-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.chrome.json
35 lines (35 loc) · 1.37 KB
/
manifest.chrome.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"manifest_version": 3,
"name": "console.diff(...)",
"version": "3.0.6",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlCx2Bl0li+3idvfrH9cQL/MzphafGFqMUA2P+0vbyhwxsxWl0llOaGQbkirX5qCoAVHoUCPqu3hCjpVCv35igPbfqDs5bdLZZmXt2F0HjEQnWI/eZKd9IKcKYMplEeL2BodmpU02VrP1UnUzQHZeeMWk9ybgWOqCimkwliILVubRj5dxNB9AidLwO4Z5iGq/OvW9AJMYdxKxrLP2lF6/GGNcCBg+iCJZwlQOhFB9LbUjytT4ws3bIEX4b5zmWLqGKR1NiZfGug2eCWXt9oEKg2WkbXmBBzFKqxnM/bBUrVR29N9qNgx0f42qnyhsW3Bo4kPzE3d0asXCV5nofLTLEwIDAQAB",
"description": "Compare objects in memory with console.diff(old, new) devtools function",
"minimum_chrome_version": "100.0",
"homepage_url": "https://github.com/zendive/jsdiff#readme",
"author": "calexblock@gmail.com",
"permissions": ["storage"],
"host_permissions": ["*://*/*"],
"devtools_page": "bundle/jsdiff-devtools.html",
"icons": {
"28": "bundle/img/panel-icon28.png",
"64": "bundle/img/panel-icon64.png",
"128": "bundle/img/panel-icon128.png"
},
"content_scripts": [
{
"world": "MAIN",
"js": ["/bundle/js/jsdiff-console.js"],
"matches": ["<all_urls>"],
"match_origin_as_fallback": true,
"all_frames": true,
"run_at": "document_start"
},
{
"js": ["/bundle/js/jsdiff-proxy.js"],
"matches": ["<all_urls>"],
"match_origin_as_fallback": true,
"all_frames": true,
"run_at": "document_start"
}
]
}