Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AEP Web SDK Engineer Toolkit", "version": "3.0.0", "description": "Toolkit for AEP Web SDK engineers. Validate ExperienceEvents, inspect Batch Failure IDs, and view debug details.", "permissions": [ "webRequest", "storage", "activeTab", "tabs", "unlimitedStorage", "scripting" ], "host_permissions": [ "<all_urls>", "https:\/\/ims-na1.adobelogin.com\/", "https:\/\/platform.adobe.io\/", "https:\/\/extensionpay.com\/", "https:\/\/experience.adobe.com\/*", "https:\/\/generativelanguage.googleapis.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/experience.adobe.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": true } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/adobe-web-sdk-debugger.png", "48": "images\/adobe-web-sdk-debugger.png", "128": "images\/adobe-web-sdk-debugger.png" } }, "options_page": "options.html", "icons": { "16": "images\/adobe-web-sdk-debugger.png", "48": "images\/adobe-web-sdk-debugger.png", "128": "images\/adobe-web-sdk-debugger.png" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "options.html", "options.js", "options.css", "images\/*.png" ], "matches": [ "<all_urls>" ] } ] }