We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b05f19b commit 9ad50acCopy full SHA for 9ad50ac
src/manifest.json
@@ -11,12 +11,8 @@
11
"content_scripts": [
12
{
13
"run_at": "document_start",
14
- "matches": [
15
- "<all_urls>"
16
- ],
17
- "js": [
18
- "content.js"
19
- ]
+ "matches": ["<all_urls>"],
+ "js": ["content.js"]
20
}
21
],
22
"browser_action": {
@@ -29,13 +25,9 @@
29
25
"default_popup": "popup/popup.html"
30
26
},
31
27
"background": {
32
- "scripts": [
33
- "background.js"
34
28
+ "scripts": ["background.js"]
35
36
- "permissions": [
37
- "https://*/*"
38
39
- "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
40
- "web_accessible_resources": [ "injected.js" ]
+ "permissions": ["https://*/*"],
+ "content_security_policy": "script-src 'self'; object-src 'self'",
+ "web_accessible_resources": ["injected.js"]
41
0 commit comments