Skip to content

Commit 151edfc

Browse files
committed
1 parent 696cd5d commit 151edfc

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

chromium/extension/manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"64": "icons/icon64.png",
1515
"128": "icons/icon128.png"
1616
},
17-
"permissions": [ "activeTab", "storage" ],
17+
"permissions": ["activeTab", "storage"],
1818
"action": { "default_popup": "popup/index.html" },
19-
"web_accessible_resources": [{ "matches": [ "<all_urls>" ], "resources": [ "components/*", "lib/*" ]}],
19+
"web_accessible_resources": [{ "matches": ["<all_urls>"], "resources": ["components/*", "lib/*"] }],
2020
"content_scripts": [{
21-
"matches": [ "https://chatgpt.com/*", "https://www.perplexity.ai/*", "https://poe.com/*" ],
22-
"run_at": "document_end", "js": [ "content.js" ]
21+
"matches": ["https://chatgpt.com/*", "https://www.perplexity.ai/*", "https://poe.com/*"],
22+
"run_at": "document_end", "js": ["content.js"]
2323
}],
2424
"background": { "service_worker": "service-worker.js" },
2525
"minimum_chrome_version": "88"

firefox/extension/manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
"64": "icons/icon64.png",
1515
"128": "icons/icon128.png"
1616
},
17-
"permissions": [ "activeTab", "storage" ],
17+
"permissions": ["activeTab", "storage"],
1818
"action": { "default_popup": "popup/index.html" },
19-
"web_accessible_resources": [{ "matches": [ "<all_urls>" ], "resources": [ "components/*", "lib/*" ]}],
19+
"web_accessible_resources": [{ "matches": ["<all_urls>"], "resources": ["components/*", "lib/*"] }],
2020
"content_scripts": [{
21-
"matches": [ "https://chatgpt.com/*", "https://www.perplexity.ai/*", "https://poe.com/*" ],
22-
"run_at": "document_end", "js": [ "content.js" ]
21+
"matches": ["https://chatgpt.com/*", "https://www.perplexity.ai/*", "https://poe.com/*"],
22+
"run_at": "document_end", "js": ["content.js"]
2323
}],
24-
"background": { "scripts": [ "background.js", "lib/json5.min.js" ]},
24+
"background": { "scripts": ["background.js", "lib/json5.min.js"] },
2525
"browser_specific_settings": {
2626
"gecko": {
2727
"id": "chatgpt.widescreen@chatgptevo.com",

0 commit comments

Comments
 (0)