Buy mode

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

Что такое Buy mode?

Buy mode - это расширение Chrome, разработанное jbsiraudin, и его основная функция - "When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Buy mode

Скачайте файлы расширений Buy mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Buy mode Buy mode
ID chelhfjncfodagiaajlcedabncohepag
Официальный URL https://chromewebstore.google.com/detail/buy-mode/chelhfjncfodagiaajlcedabncohepag
Описание When entering Amazon, music (The Sims, Nook Store, Wii Store) is launched.
Размер файла 9.21 KB
Количество установок 149
Текущая Версия 0.3
Последнее Обновление 2019-08-07
Дата публикации 2019-08-06
Рейтинг 4.67/5 Всего 6 оценок
Разработчик jbsiraudin
Тип оплаты free
Поддерживаемые языки 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"
}