Inspect and view changes in Power Roles 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": "Power Roles",
"version": "1.2.18",
"description": "Extension that allows you to record user actions and create or edit roles based on them.",
"icons": {
"16": "logo192.png",
"48": "logo192.png",
"128": "logo192.png"
},
"background": {
"service_worker": "./static/js/background.js"
},
"side_panel": {
"default_path": "index.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"./static/js/content.js"
]
}
],
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"tabs",
"webRequest",
"sidePanel"
],
"host_permissions": [
"<all_urls>"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}