Inspect and view changes in Save Link to Highlight 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": "Save Link to Highlight",
"icons": {
"128": "images/copylink-logo.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"128": "images/copylink-logo.png"
}
},
"manifest_version": 3,
"version": "1.0.1",
"description": "Save and share multiple highlights on any page fast! Save all your highlights locally.",
"permissions": [
"tabs",
"contextMenus",
"notifications",
"activeTab",
"storage",
"unlimitedStorage",
"clipboardWrite"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"style.css"
],
"js": [
"content_script.js",
"js/fragment-generation-and-text-fragment-utils.js",
"js/Readability.js"
]
}
]
}