webmBed

Taking .webm urls and displaying the video inline

webmBed क्या है?

webmBed Valeyard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Taking .webm urls and displaying the video inline"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में webmBed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}