Headline Cleaner transforms clickbait headlines into fact-based headlines.
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": "Headline Cleaner",
"version": "1.7.0",
"description": "__MSG_description__",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"host_permissions": [
"https://api.headlinecleaner.com/*",
"https://headlinecleaner.com/login"
],
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
},
"gecko_android": {
"id": "[email protected]"
}
},
"action": {
"default_popup": "popup/popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content-script/import-content-script.js"
],
"css": [
"content-script/content-script.css"
]
}
],
"icons": {
"48": "icon.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"chunks/*-*.js",
"content-script/content-script.js"
],
"matches": [
"http://*/*",
"https://*/*",
"https://api.headlinecleaner.com/*",
"https://headlinecleaner.com/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}