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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में Happy little extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        "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"
            ]
        }
    ]
}