TLDR Summary on the Web and YouTube: using OpenAI ChatGPT, GPT-4, Google Bard and Anthropic Claude.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.4.1",
"icons": {
"16": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"action": {},
"background": {
"service_worker": "/background.js",
"type": "module"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"js": [
"content/content.js"
],
"css": [
"assets/content.css"
],
"matches": [
"<all_urls>"
],
"all_frames": false
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"images/*",
"assets/*",
"content/*",
"options/options.html",
"page/*.html"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"identity",
"activeTab",
"storage",
"cookies",
"scripting"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+A",
"windows": "Alt+A",
"mac": "Alt+A"
}
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}