digdrop - Amazon price drops digger
Amazon price tracker, price drops explorer, Amazon price history chart app.
Qu'est-ce que digdrop - Amazon price drops digger ?
digdrop - Amazon price drops digger est une extension Chrome développée par http://digdrop.com, et sa fonction principale est "Amazon price tracker, price drops explorer, Amazon price history chart app.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension digdrop - Amazon price drops digger
Téléchargez les fichiers d'extension digdrop - Amazon price drops digger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension provides information about Amazon.com products that have incurred recent price drops, along with a product price history chart.
Informations de Base sur l'Extension
Nom | |
ID | eldgnmpbphbeogogkkpkjihnfmpcoian |
URL Officiel | https://chrome.google.com/webstore/detail/digdrop-amazon-price-drop/eldgnmpbphbeogogkkpkjihnfmpcoian |
Description | Amazon price tracker, price drops explorer, Amazon price history chart app. |
Taille du Fichier | 34.68 KB |
Nombre d'Installations | 222 |
Version Actuelle | 1.8 |
Dernière Mise à Jour | 2015-02-14 |
Date de Publication | 2015-02-14 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | http://digdrop.com |
Type de Paiement | free |
Site Web de l'Extension | http://digdrop.com/ |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "digdrop - Amazon price drops digger", "description": "Amazon price tracker, price drops explorer, Amazon price history chart app.", "version": "1.8", "icons": { "19": "icon.png", "48": "icon.png", "128": "icon.png" }, "homepage_url": "http:\/\/digdrop.com\/", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "digdrop - Amazon price drops digger", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "externally_connectable": { "matches": [ "*:\/\/*.digdrop.com\/*" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.amazon.com\/*" ], "js": [ "page-scrape.js" ], "run_at": "document_end" } ] } |