AZ 90 Day
Display any Amazon product's average 90 selling price and sales rank.
Vad är AZ 90 Day?
AZ 90 Day är en Chrome-tillägg utvecklad av Green Lava, och dess huvudfunktion är "Display any Amazon product's average 90 selling price and sales rank.".
Tilläggsskärmbilder
Ladda ner AZ 90 Day-förlängningens CRX-fil
Ladda ner AZ 90 Day-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Get 90 Day Price and Rank Averages on the Amazon Page with the AZ 90 Day Chrome Extension for Amazon. Grundläggande Information om Tillägg
| Namn | |
| ID | nnlkfkelmipfdpgjiopncibpcghjkbjl |
| Officiell webbadress | https://chromewebstore.google.com/detail/az-90-day/nnlkfkelmipfdpgjiopncibpcghjkbjl |
| Beskrivning | Display any Amazon product's average 90 selling price and sales rank. |
| Filstorlek | 375 KB |
| Antal Installationer | 327 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2016-08-14 |
| Publiceringsdatum | 2016-08-14 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Green Lava |
| E-post | [email protected] |
| Betalningssätt | in_app |
| Tilläggswebbplats | http://www.az90day.com/ |
| Hjälpsida URL | http://www.az90day.com/ |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AZ 90 Day",
"version": "1.3",
"description": "Display any Amazon product's average 90 selling price and sales rank.",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"match_about_blank": true,
"all_frames": true,
"matches": [
"*:\/\/*.amazon.com\/*",
"*:\/\/*.amazon.co.uk\/*",
"https:\/\/keepa.com\/*",
"http:\/\/keepa.com\/*"
],
"js": [
"script.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "images\/diamond.png"
}
},
"permissions": [
"activeTab",
"tabs"
],
"manifest_version": 2
} | |