Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"author": "Grant Winney",
"homepage_url": "https:\/\/github.com\/grantwinney\/chrome-extension-block-comments",
"name": "Hide Comments Everywhere",
"description": "Block comments across the web. Show the ones you want. You're in control!",
"version": "1.6.12",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"https:\/\/raw.githubusercontent.com\/grantwinney\/hide-comments-everywhere\/master\/sites\/sites.json",
"https:\/\/raw.githubusercontent.com\/grantwinney\/hide-comments-everywhere\/master\/sites\/version.json"
],
"action": {
"default_icon": {
"16": "images\/hide-comments-16.png",
"32": "images\/hide-comments-32.png",
"48": "images\/hide-comments-48.png",
"64": "images\/hide-comments-64.png",
"128": "images\/hide-comments-128.png"
},
"default_title": "Hide Comments Everywhere",
"default_popup": "popup.html"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"js": [
"js\/shared.js",
"js\/comments.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"icons": {
"16": "images\/hide-comments-16.png",
"32": "images\/hide-comments-32.png",
"48": "images\/hide-comments-48.png",
"64": "images\/hide-comments-64.png",
"128": "images\/hide-comments-128.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "Command+Shift+H"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "{c39bcadb-15e8-46e0-b853-780e4bb0de6e}"
}
}
}