iFrame'd it!

Put any video in an iframe, with one click!

iFrame'd it!とは何ですか?

iFrame'd it!はjoeykeetonによって開発されたChromeの拡張機能で、その主な機能は「Put any video in an iframe, with one click!」です。

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

screenshot
screenshot

iFrame'd it!拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This uses iframe.ly's API to grab the source URL of any video file currently playing in the browser's window, and to also provide responsive iframe markup for the file.  It requires an API key from https://iframely.com, which will allow you to grab the source URL/markup for 1000 videos a month (for free!).                    

拡張機能の基本情報

名前 iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
公式URL https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
説明 Put any video in an iframe, with one click!
ファイルサイズ 268 KB
インストール数 73
現在のバージョン 0.1
最終更新日 2016-08-06
公開日 2016-08-05
評価 5.00/5 合計 1 レビュー
開発者 joeykeeton
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iFrame'd it!",
    "version": "0.1",
    "description": "Put any video in an iframe, with one click!",
    "browser_action": {
        "default_icon": "iframe.png",
        "content_security_policy": "script-src 'self' object-src 'self'",
        "default_popup": "sandboxed.html"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "angular.min.js",
            "angular-sanitize.min.js",
            "backgroundscript.js",
            "stuff.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "contentSettings",
        "contextMenus",
        "tabs",
        "activeTab",
        "browsingData",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webNavigation",
        "storage",
        ""
    ],
    "options_page": "options.html",
    "icons": {
        "16": "iframe.png"
    }
}