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": "PopMart Store Pickup Checker", "version": "2.3", "description": "Automatically checks your local PopMart Store Pickup for available products", "permissions": [ "storage", "tabs", "notifications" ], "host_permissions": [ "https:\/\/www.popmart.com\/*", "https:\/\/m.popmart.com\/*", "https:\/\/extensionpay.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.popmart.com\/*", "https:\/\/m.popmart.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/extensionpay.com\/*" ], "js": [ "ExtPay.js" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html", "default_title": "PopMart Store Pickup Checker", "default_icon": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }