Inspect and view changes in Arista URL Display 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
{
"manifest_version": 3,
"name": "Arista URL Display Extension",
"version": "1.1",
"description": "Shows a button with the URL when entering a new page.",
"permissions": [
"tabs",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icon.png"
},
"web_accessible_resources": [
{
"resources": [
"icon.png",
"icon1.png",
"icon2.png"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}