Inspect and view changes in Beyond Comments source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Beyond Comments",
"version": "0.2.2",
"description": "A Browser Extension allows you to make comment on any website.",
"action": {
"default_icon": {
"32": "./assets/favicon-32.png",
"48": "./assets/favicon-48.png",
"128": "./assets/favicon-128.png",
"512": "./assets/favicon-512.png"
},
"default_popup": "./dist/popup/index.html"
},
"options_ui": {
"page": "./dist/options/index.html",
"open_in_tab": true
},
"icons": {
"32": "./assets/favicon-32.png",
"48": "./assets/favicon-48.png",
"128": "./assets/favicon-128.png",
"512": "./assets/favicon-512.png"
},
"permissions": [
"tabs",
"storage",
"activeTab"
],
"host_permissions": [
"http://*/",
"https://*/"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"./dist/contentScripts/index.global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"dist/contentScripts/style.css"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
]
}