webmBed

Taking .webm urls and displaying the video inline

webmBedとは何ですか?

webmBedはValeyardによって開発されたChromeの拡張機能で、その主な機能は「Taking .webm urls and displaying the video inline」です。

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

screenshot
screenshot
screenshot
screenshot

webmBed拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Takes any standard url to a .webm video and replaces it with the embedded version of the video.

It SHOULD embed video on all sites (minus Twitter) but if you run into any problems just contact me with the problem site and I'll fix it.

Hit the icon (as seen in the screenshots, located on the right hand side of the address bar) to bring up the menu to disable/enable the feature

Update: v0.7.9 - Changed the URL recognition so it ignores duff urls and only displays relevant results. This is likely to need a lot more updating but I need user feedback on specific instances for that                    

拡張機能の基本情報

名前 webmBed webmBed
ID gfbfkmmaicfmegknnopfbdgjbbeijkmn
公式URL https://chromewebstore.google.com/detail/webmbed/gfbfkmmaicfmegknnopfbdgjbbeijkmn
説明 Taking .webm urls and displaying the video inline
ファイルサイズ 1.33 MB
インストール数 37
現在のバージョン 0.7.9
最終更新日 2014-04-15
公開日 2014-04-14
評価 5.00/5 合計 1 レビュー
開発者 Valeyard
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "webmBed",
    "version": "0.7.9",
    "description": "Taking .webm urls and displaying the video inline",
    "icons": {
        "128": "images\/webmbed128.png",
        "16": "images\/webmbed16.png",
        "48": "images\/webmbed48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "matches": [
            ""
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_title": "webmBed",
        "default_icon": "images\/webmbed128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}