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": 2,
"name": "FeeGazer",
"description": "This extension simplifies the process to calculate Amazon Fees from search pages",
"version": "0.2",
"browser_action": {
"default_icon": {
"16": "images\/icon-circle-on.png",
"48": "images\/icon-circle-on.png",
"128": "images\/icon-circle-on.png"
},
"default_title": "FeeGazer"
},
"web_accessible_resources": [
"html\/amazon_table.html",
"css\/*",
"js\/*",
"font-awesome\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.amazon.com\/*",
"*:\/\/*.amazon.ca\/*",
"*:\/\/*.amazon.es\/*",
"*:\/\/*.amazon.co.uk\/*",
"*:\/\/*.amazon.it\/*",
"*:\/\/*.amazon.fr\/*",
"*:\/\/*.amazon.de\/*"
],
"js": [
"\/js\/jquery.min.js",
"\/js\/bootstrap.bundle.min.js",
"\/js\/switchery.js",
"\/js\/inject.js",
"\/js\/options.js"
],
"css": [
"\/css\/bootstrap.min.css",
"\/css\/switchery.css",
"\/css\/custom.css",
"\/css\/custom-options.css"
],
"run_at": "document_end"
}
],
"permissions": [
"*:\/\/feegazer.com\/*",
"*:\/\/*.amazon.com\/*",
"*:\/\/*.amazon.ca\/*",
"*:\/\/*.amazon.es\/*",
"*:\/\/*.amazon.co.uk\/*",
"*:\/\/*.amazon.it\/*",
"*:\/\/*.amazon.fr\/*",
"*:\/\/*.amazon.de\/*",
"identity",
"identity.email",
"storage"
],
"options_page": "\/html\/options.html",
"background": {
"page": "\/html\/background.html",
"persistent": false
},
"icons": {
"16": "images\/icon-128.png",
"48": "images\/icon-128.png",
"128": "images\/icon-128.png",
"144": "images\/icon-256.png",
"310": "images\/icon-256.png"
}
}