Highlight Every Where all website by colors easy to find
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": 2,
"name": "Highlight Every Where",
"version": "1.0.2resigned1",
"applications": {
"gecko": {
"id": "herosine@gmail.com",
"strict_min_version": "42.0"
}
},
"icons": {
"48": "icons/highlighter.png"
},
"browser_action": {
"default_icon": {
"48": "icons/highlighter.png"
},
"default_title": "Highlight Every Where",
"default_popup": "popup/popup.html",
"browser_style": true
},
"content_scripts": [
{
"matches": [
"file:///*/*",
"*://*/*"
],
"js": [
"contentScripts/scripts/contentScript.js",
"contentScripts/scripts/highlight.js"
],
"css": [
"contentScripts/css/highlight.css"
],
"all_frames": true,
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background/background.js"
]
},
"permissions": [
"storage"
]
}