Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Comment on The Internet",
"description": "Turn any webpage into a dynamic forum. Comment manually or via AI, vote, annotate, create, and share on this social media platform.",
"version": "1.2",
"permissions": [
"sidePanel",
"storage",
"activeTab",
"tabs",
"scripting"
],
"action": {
"default_title": "Click to open panel"
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"host_permissions": [
"https:\/\/www.theinternet.io\/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"wgxpath.install.js",
"state.js",
"content.js",
"annotateContent.js",
"handleAnnotationsOnPage.js"
],
"css": [
"content.css"
],
"run_at": "document_idle"
}
]
}