Tubepop

Undocks the embedded youtube video from their site into its own window.

Tubepop क्या है?

Tubepop logan.komanetz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Undocks the embedded youtube video from their site into its own window."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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

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

                        This extension for Chrome allows you to take an already running video on YouTube and pop it out into its own window that you can resize and move.  No longer are you stuck with playing the video inside of the YouTube page.  Enjoy having your video off to the side in its own packed window while you are working on other things.

=============
Version 1.3.1
=============
- Fixes bug with new Chrome update that stopped the window from being undocked
- Changes button to only be enabled when in a Youtube "watch" window                    

एक्सटेंशन की मूल जानकारी

नाम Tubepop Tubepop
ID kinlkfbbcojohldppmkklkeecgpggohh
आधिकारिक URL https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh
विवरण Undocks the embedded youtube video from their site into its own window.
फ़ाइल का आकार 13.36 KB
स्थापना संख्या 12
वर्तमान संस्करण 1.3.1
अंतिम अपडेट 2017-02-13
प्रकाशन तिथि 2017-02-13
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर logan.komanetz
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tubepop",
    "description": "Undocks the embedded youtube video from their site into its own window.",
    "version": "1.3.1",
    "page_action": {
        "default_icon": "button_black_eject.png",
        "default_title": "Click to pop video out of YouTube."
    },
    "background": {
        "scripts": [
            "tubePop.js",
            "chromeExtension.js"
        ]
    },
    "web_accessible_resources": [
        "clientScript.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "notifications",
        "storage",
        "declarativeContent"
    ],
    "options_page": "views\/options.html",
    "options_ui": {
        "page": "views\/options.html",
        "chrome_style": true
    }
}