oEmbed pop-out

Creates a pop-out window for content utilising the oEmbed API

oEmbed pop-out क्या है?

oEmbed pop-out Martin Hughes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Creates a pop-out window for content utilising the oEmbed API"।

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

screenshot
screenshot
screenshot

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

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

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

                        Take advantage of content providers using the oembed API. If a page publishes that embedded content is available, then the oEmbed pop-out icon will appear in your URL bar, allowing you to view the content in a pop-out window and continue browsing the web. Perfect for watching YouTube videos while browsing the internet.

See http://oembed.com/#section7 for a full list of oEmbed providers. Here's a quick list:

YouTube
CollegeHumor
Vimeo
slideshare
FunnyOrDie
Daily Motion

Currently only supports iframe embedded. Object embedding will be coming shortly.

=====================
Change log: https://github.com/martinph/oEmbed-pop-out/releases                    

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

नाम oEmbed pop-out oEmbed pop-out
ID iilknijhfchaabacafklhmmlpbedehlg
आधिकारिक URL https://chrome.google.com/webstore/detail/oembed-pop-out/iilknijhfchaabacafklhmmlpbedehlg
विवरण Creates a pop-out window for content utilising the oEmbed API
फ़ाइल का आकार 39.88 KB
स्थापना संख्या 243
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2014-07-24
प्रकाशन तिथि 2014-07-24
रेटिंग 1.00/5 कुल 2 रेटिंग्स
डेवलपर Martin Hughes
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/martinph/oEmbed-pop-out
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "oEmbed pop-out",
    "version": "1.0.1",
    "description": "Creates a pop-out window for content utilising the oEmbed API",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "jquery-1.9.1.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_icon": "icon-16.png",
        "default_title": "There's embedded content for this page!"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}