Inspect and view changes in Mouse Coordinates 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",
"description": "Display mouse coordinates on the web page.",
"version": "1.0.0",
"manifest_version": 3,
"name": "Mouse Coordinates",
"homepage_url": "https://betelgeuseas.github.io/extensions/",
"action": {
"default_popup": "popup.html",
"default_title": "Mouse Coordinates",
"default_icon": "icon-32.png"
},
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png"
},
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"contentScript.bundle.js"
],
"css": [
"content.styles.css"
]
}
],
"permissions": [
"contextMenus",
"storage"
]
}