iFrame'd it!

Put any video in an iframe, with one click!

Qu'est-ce que iFrame'd it! ?

iFrame'd it! est une extension Chrome développée par joeykeeton, et sa fonction principale est "Put any video in an iframe, with one click!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension iFrame'd it!

Téléchargez les fichiers d'extension iFrame'd it! 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

                        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!).                    

Informations de Base sur l'Extension

Nom iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
URL Officiel https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Description Put any video in an iframe, with one click!
Taille du Fichier 268 KB
Nombre d'Installations 73
Version Actuelle 0.1
Dernière Mise à Jour 2016-08-06
Date de Publication 2016-08-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur joeykeeton
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}