Inspect and view changes in Minimapify - Smart Scrolling for Seamless Browsing 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
{
"manifest_version": 3,
"name": "Minimapify - Smart Scrolling for Seamless Browsing",
"version": "1.0",
"description": "Revolutionize your browsing experience with the MiniMapify Extension. Navigate smarter, faster, and more efficiently.",
"permissions": [
"scripting",
"activeTab",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon/16.png",
"48": "icon/48.png",
"128": "icon/128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon/16.png",
"48": "icon/48.png",
"128": "icon/128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"minimap.js"
],
"run_at": "document_end",
"css": [
"minimap.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}