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",
"name": "HTML Comments Finder",
"description": "Finds HTML comments in the current page",
"version": "1.0.2",
"manifest_version": 3,
"homepage_url": "https:\/\/github.com\/dimdenGD\/html-comment-finder",
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab"
],
"icons": {
"128": "\/images\/eye_open.png"
},
"action": {
"default_icon": {
"128": "\/images\/eye_closed.png"
},
"default_title": "See HTML comments",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
]
}