Buy mode

When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.

Vad är Buy mode?

Buy mode är en Chrome-tillägg utvecklad av jbsiraudin, och dess huvudfunktion är "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.".

Tilläggsskärmbilder

screenshot

Ladda ner Buy mode-förlängningens CRX-fil

Ladda ner Buy mode-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

                        When entering Amazon, a small unfocused window is launched with the YouTube playlist of your choice : The Sims' Buy Mode, Nook Store Music, Wii Store Music.

Icon Money by henrik lund mikkelsen from the Noun Project                    

Grundläggande Information om Tillägg

Namn Buy mode Buy mode
ID chelhfjncfodagiaajlcedabncohepag
Officiell webbadress https://chromewebstore.google.com/detail/buy-mode/chelhfjncfodagiaajlcedabncohepag
Beskrivning When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.
Filstorlek 9.21 KB
Antal Installationer 149
Aktuell Version 0.3
Senast Uppdaterad 2019-08-07
Publiceringsdatum 2019-08-06
Betyg 4.67/5 Totalt 6 Betyg
Utvecklare jbsiraudin
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Buy mode",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_title": "Buy Mode",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.fr\/*",
                "https:\/\/*.amazon.de\/*",
                "https:\/\/*.amazon.ca\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.amazon.at\/*",
                "https:\/\/*.amazon.es\/*",
                "https:\/\/*.amazon.com.mx\/*",
                "https:\/\/*.amazon.co.jp\/*",
                "https:\/\/*.amazon.it\/*",
                "https:\/\/*.amazon.in\/*",
                "https:\/\/*.amazon.cn\/*",
                "https:\/\/*.amazon.com.br\/*",
                "https:\/\/*.amazon.com.au\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "manifest_version": 2,
    "incognito": "split"
}