Inspect and view changes in Ansys AEM Toolkit 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": "Ansys AEM Toolkit",
"description": "Adds shortcuts and various tools to help content authorers in AEM.",
"version": "1.0",
"omnibox": {
"keyword": "ans"
},
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/ansys-icon_16.png",
"32": "/images/ansys-icon_32.png",
"48": "/images/ansys-icon_48.png",
"128": "/images/ansys-icon_128.png"
}
},
"icons": {
"16": "/images/ansys-icon_16.png",
"32": "/images/ansys-icon_32.png",
"48": "/images/ansys-icon_48.png",
"128": "/images/ansys-icon_128.png"
},
"content_scripts": [
{
"matches": [
"https://author-p16153-e39454.adobeaemcloud.com/*"
],
"css": [
"my-styles.css"
],
"js": [
"content-script.js"
],
"run_at": "document_end"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}