Inspect and view changes in Disable Refresh Browser Shortcut 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": "Disable Refresh Browser Shortcut",
"manifest_version": 2,
"version": "2.1",
"description": "Created By: Ibrahim Gurhan",
"icons": {
"128": "ibrahimLogo.png"
},
"browser_action": {
"default_icon": "ibrahimLogo.png",
"default_title": "Disable Refresh Button",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"script.js"
]
},
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"https://meet.google.com/*",
"https://*.remo.co/*"
]
}
]
}