Popout Plus for YouTube™

Allows you to popout a video from your feed or from recommended sidebar.

Popout Plus for YouTube™ क्या है?

Popout Plus for YouTube™ zaucy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to popout a video from your feed or from recommended sidebar."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

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

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

                        Allows you to popout a video from your feed or from recommended sidebar.

Source is available at: https://github.com/zaucy/chrome-popout-plus-for-youtube

Change Log
==========
0.1.13
 - Fixed issue with not being able to view certain videos.
 - Video comments and suggestions are now accessible through the popout when the popout is made larger.
 - (WARNING) this extension isn't tested with non-html player.
0.1.12
 - YouTube's layout changed a bit so I fixed it so it works again. Infact it works better now :)

0.1.11
 - New Logo (Again) due to it being too similar to YouTube's.
 - Annotation links that direct to another video will now open up in the same popout window.

0.1.9
 - New Logo
 - Changed name to "Popout Plus for Youtube™" due to the naming guidelines Google has in place.

0.1.7
 - Quick fix to have popout button show up again

0.1.6
 - Made youtube popout without title bar

0.1.5
 - Fixed bug that would not have popout button for new videos at the bottom of feed.
 - Changed extension to only cover YouTube I have another extension called TwitchTV Popout Plus if you want that.                    

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

नाम Popout Plus for YouTube™ Popout Plus for YouTube™
ID fchjdmjggdpnjgcbdddabimolhcmmfpm
आधिकारिक URL https://chrome.google.com/webstore/detail/popout-plus-for-youtube/fchjdmjggdpnjgcbdddabimolhcmmfpm
विवरण Allows you to popout a video from your feed or from recommended sidebar.
फ़ाइल का आकार 104 KB
स्थापना संख्या 195
वर्तमान संस्करण 0.1.13
अंतिम अपडेट 2015-06-10
प्रकाशन तिथि 2015-06-10
रेटिंग 3.10/5 कुल 10 रेटिंग्स
डेवलपर zaucy
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Popout Plus for YouTube\u2122",
    "description": "Allows you to popout a video from your feed or from recommended sidebar.",
    "version": "0.1.13",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch?v=*&ytpp=true"
            ],
            "js": [
                "youtube\/popout_resizer.js",
                "youtube\/popout_embedder.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch?v=*&ytpp=true"
            ],
            "js": [
                "youtube\/popout_embedder.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/watch?v=*&ytpp=true"
            ],
            "js": [
                "youtube\/popout.js"
            ],
            "css": [
                "youtube\/popout.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "youtube\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "icon16.png"
    ],
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    }
}