Inspect and view changes in dScribe Data Extension 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
{
"name": "dScribe Data Extension",
"description": "Base Level Extension",
"version": "1.3",
"manifest_version": 3,
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"*://*.dscribedata.com/*"
],
"js": [
"loggedInUser.js"
]
},
{
"run_at": "document_idle",
"matches": [
"*://*.sapanalytics.cloud/*"
],
"js": [
"sac.js"
]
},
{
"run_at": "document_idle",
"matches": [
"*://app.powerbi.com/*"
],
"js": [
"powerbi.js"
]
}
],
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "/assets/icon32.png",
"32": "/assets/icon32.png",
"48": "/assets/icon32.png",
"128": "/assets/icon32.png"
}
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs"
],
"icons": {
"16": "/assets/icon32.png",
"32": "/assets/icon32.png",
"48": "/assets/icon32.png",
"512": "/assets/logo512.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}