Inspect and view changes in Oracle GUID converter 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,
"author": "Petr Mazánek, mazy.cz",
"name": "Oracle GUID converter",
"version": "0.4",
"description": "Converts GUID to Oracle RAW(16). When founds GUID in URL, it will be converted automatically.",
"permissions": [
"tabs",
"activeTab",
"scripting"
],
"offline_enabled": true,
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"popup.js"
]
}
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icon/16.png",
"48": "icon/48.png",
"128": "icon/128.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}