Highlight what's important
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,
"version": "1.1.0",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"icons": {
"48": "images/icon.png",
"96": "images/icon-96.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"all_frames": false,
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"<all_urls>"
],
"content_security_policy": "script-src 'self' https://markerhero.com; object-src 'self'; connect-src https://markerhero.com",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}