webmBed

Taking .webm urls and displaying the video inline

ما هو webmBed؟

webmBed هو إضافة Chrome تم تطويرها بواسطة Valeyard، والميزة الرئيسية لها هي "Taking .webm urls and displaying the video inline".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة webmBed

قم بتنزيل ملفات الامتداد webmBed بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}