oEmbed pop-out

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

oEmbed pop-outとは何ですか?

oEmbed pop-outはMartin Hughesによって開発されたChromeの拡張機能で、その主な機能は「Creates a pop-out window for content utilising the oEmbed API」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

oEmbed pop-out拡張機能のCRXファイルをダウンロード

oEmbed pop-out拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}