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": "Merch By Amazon Listing AI", "short_name": "MAI", "version": "1.0.3", "description": "Merch by Amazon listing assistant", "icons": { "48": "\/icons\/icon48.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "index.html" ], "matches": [ "<all_urls>" ] } ], "content_scripts": [ { "matches": [ "https:\/\/merch.amazon.com\/*" ], "js": [ "content.js", "chatbot.js" ], "run_at": "document_start" } ], "host_permissions": [ "<all_urls>" ], "action": { "default_popup": "index.html" } }