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": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.9.5",
"default_locale": "en",
"icons": {
"128": "\/assets\/img\/icons\/icon128.png"
},
"action": {
"default_popup": "\/content\/popup.html",
"default_icon": "\/assets\/img\/icons\/icon128.png"
},
"options_ui": {
"page": "\/content\/preferences.html",
"open_in_tab": false
},
"content_scripts": [
{
"matches": [
"*:\/\/amazon.com\/*",
"*:\/\/*.amazon.com\/*"
],
"js": [
"\/assets\/js\/content.js"
],
"css": [
"\/assets\/styles\/main.css"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "\/assets\/js\/background.js"
},
"permissions": [
"management",
"storage"
],
"web_accessible_resources": [
{
"resources": [
"\/assets\/*",
"\/content\/*.html",
"\/assets\/js\/content.js",
"\/assets\/img\/loader.gif"
],
"matches": [
"<all_urls>"
]
}
]
}