Amazon Price Checker

This extension checks prices on Amazon.

Qu'est-ce que Amazon Price Checker ?

Amazon Price Checker est une extension Chrome développée par Unknown, et sa fonction principale est "This extension checks prices on Amazon.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Amazon Price Checker

Téléchargez les fichiers d'extension Amazon Price Checker 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 searches Google for cheaper prices.                    

Informations de Base sur l'Extension

Nom Amazon Price Checker Amazon Price Checker
ID nohfhkglmighmobcmbebcdjlffpdmdni
URL Officiel https://chromewebstore.google.com/detail/amazon-price-checker/nohfhkglmighmobcmbebcdjlffpdmdni
Description This extension checks prices on Amazon.
Taille du Fichier 41.43 KB
Nombre d'Installations 133
Version Actuelle 1.0
Dernière Mise à Jour 2016-12-01
Date de Publication 2016-12-01
Évaluation 4.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Price Checker",
    "description": "This extension checks prices on Amazon.",
    "version": "1.0",
    "icons": {
        "16": "img\/amazon.png",
        "48": "img\/amazon.png",
        "128": "img\/amazon.png"
    },
    "browser_action": {
        "default_icon": "img\/amazon.png",
        "default_title": "Amazon",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.de\/*"
            ],
            "js": [
                "js\/jquery-1.7.1.min.js",
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.google.de\/"
    ]
}