iFrame'd it!

Put any video in an iframe, with one click!

Cos'è iFrame'd it!?

iFrame'd it! è un'estensione di Chrome sviluppata da joeykeeton, e la sua funzione principale è "Put any video in an iframe, with one click!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione iFrame'd it!

Scarica i file di estensione iFrame'd it! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
URL Ufficiale https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Descrizione Put any video in an iframe, with one click!
Dimensione del File 268 KB
Conteggio Installazioni 73
Versione Corrente 0.1
Ultimo Aggiornamento 2016-08-06
Data di Pubblicazione 2016-08-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore joeykeeton
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}