ASIN Nabber

Grabs the ASIN from a page

Wat is ASIN Nabber?

ASIN Nabber is een Chrome-extensie ontwikkeld door antecmo, en de belangrijkste functie is "Grabs the ASIN from a page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ASIN Nabber

Download ASIN Nabber-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A simple ASIN extractor. 

This tool will quickly extract, one or many Amazon Standard Identification Number (ASIN) from a given Amazon page. Will save collection as you brows, save to clipboard and delte.                    

Basisinformatie over de Extensie

Naam ASIN Nabber ASIN Nabber
ID bgbgkgcfooglepdpgmclmfjcnbaafioe
Officiële URL https://chromewebstore.google.com/detail/asin-nabber/bgbgkgcfooglepdpgmclmfjcnbaafioe
Beschrijving Grabs the ASIN from a page
Bestandsgrootte 18.49 KB
Aantal Installaties 109
Huidige Versie 1.2
Laatst Bijgewerkt 2017-06-04
Publicatiedatum 2017-06-04
Beoordeling 1.50/5 Totaal 2 Beoordelingen
Ontwikkelaar antecmo
E-mail [email protected]
Betalingswijze free
Help Pagina-URL http://twitter.com/mousedown
Ondersteunde Talen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ASIN Nabber",
    "description": "Grabs the ASIN from a page",
    "version": "1.2",
    "icons": {
        "16": "grab16.png",
        "48": "grab48.png",
        "128": "grab128.png"
    },
    "web_accessible_resources": [
        "bomb48.png"
    ],
    "permissions": [
        "notifications",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.co.uk\/*"
            ],
            "js": [
                "nabber.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "ASIN Nabber",
        "default_icon": "grab128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2
}