Inspect and view changes in GUID Generator 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": "GUID Generator",
"short_name": "GUID Generator",
"description": "Generate GUID and copy to clipboard with a single click",
"author": "Rasmus Christiansen (rcfed.com)",
"homepage_url": "https://rcfed.com/Browser/GUIDGenerator",
"version": "1.8.1",
"action": {
"default_icon": {
"57": "/icon/icon57.png",
"96": "/icon/icon96.png",
"128": "/icon/icon128.png",
"192": "/icon/icon192.png"
},
"default_popup": "popup.html",
"default_title": "rcFederation GUID Generator"
},
"permissions": [
"contextMenus"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"57": "/icon/icon57.png",
"96": "/icon/icon96.png",
"128": "/icon/icon128.png",
"192": "/icon/icon192.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}