Inspect and view changes in Multiple Highlights.page source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Multiple Highlights.page",
"icons": {
"128": "images/logo.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "images/logo.png"
}
},
"manifest_version": 3,
"version": "0.5.5",
"description": "The fastest & most easiest way to share multiple highlights you made on a page with anyone!",
"permissions": [
"tabs",
"contextMenus",
"notifications",
"activeTab",
"storage",
"clipboardWrite"
],
"commands": {
"create-highlight-link": {
"suggested_key": {
"default": "Ctrl+D"
},
"description": "Make a Highlights page"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"<all_urls>"
],
"all_frames": false,
"css": [
"style.css"
],
"js": [
"content_script.js",
"js/fragment-generation-and-text-fragment-utils.js"
]
}
]
}