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是由RoundhouseMouse開發的Chrome擴展程式,該擴展的主要功能是“A fun little prank extension that plays a youtube video of your specification in the background every time someone loads a webpage.”。

擴展截圖

screenshot
screenshot

下載Happy little extension擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}