webmBed

Taking .webm urls and displaying the video inline

Qu'est-ce que webmBed ?

webmBed est une extension Chrome développée par Valeyard, et sa fonction principale est "Taking .webm urls and displaying the video inline".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension webmBed

Téléchargez les fichiers d'extension webmBed au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom webmBed webmBed
ID gfbfkmmaicfmegknnopfbdgjbbeijkmn
URL Officiel https://chromewebstore.google.com/detail/webmbed/gfbfkmmaicfmegknnopfbdgjbbeijkmn
Description Taking .webm urls and displaying the video inline
Taille du Fichier 1.33 MB
Nombre d'Installations 37
Version Actuelle 0.7.9
Dernière Mise à Jour 2014-04-15
Date de Publication 2014-04-14
Évaluation 5.00/5 Total 1 Évaluations
Développeur Valeyard
Type de Paiement free
Langues Prises en Charge 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"
    ]
}