Happy little extension

A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.

Что такое Happy little extension?

Happy little extension - это расширение Chrome, разработанное RoundhouseMouse, и его основная функция - "A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.".

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

screenshot
screenshot

Скачать файл CRX расширения Happy little extension

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

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

                        "Where's that noise coming from??" 
Prank your friends with this extension! 

Install this chrome extension onto someone's computer and then input a video's ID from YouTube into the popup's input. The extension will create instances of the video in the background of the viewer's browser. 

2 steps:
1. Install this chrome extension onto someone's computer
2. Set the YouTube video ID in the extension's popup.

You can turn off the feature temporarily by clearing the ID from the popup's input field.

Have fun!                    

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

Название Happy little extension Happy little extension
ID ddibaleillejnopholbacpppgokappco
Официальный URL https://chromewebstore.google.com/detail/happy-little-extension/ddibaleillejnopholbacpppgokappco
Описание A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.
Размер файла 347 KB
Количество установок 35
Текущая Версия 0.1
Последнее Обновление 2019-08-13
Дата публикации 2019-08-09
Разработчик RoundhouseMouse
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Happy little extension",
    "description": "A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.",
    "version": "0.1",
    "icons": {
        "16": ".\/client\/images\/icons\/16.png",
        "48": ".\/client\/images\/icons\/48.png",
        "128": ".\/client\/images\/icons\/128.png"
    },
    "browser_action": {
        "default_icon": ".\/client\/images\/icons\/16.png",
        "default_title": "Happy little extension",
        "default_popup": "client\/popup.html"
    },
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                ".\/css\/styles.css"
            ],
            "js": [
                ".\/js\/contentScript.js"
            ]
        }
    ]
}