iFrame'd it!

Put any video in an iframe, with one click!

¿Qué es iFrame'd it!?

iFrame'd it! es una extensión de Chrome desarrollada por joeykeeton, y su función principal es "Put any video in an iframe, with one click!".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión iFrame'd it!

Descarga archivos de extensión iFrame'd it! en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
URL Oficial https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Descripción Put any video in an iframe, with one click!
Tamaño del Archivo 268 KB
Cantidad de Instalaciones 73
Versión Actual 0.1
Última Actualización 2016-08-06
Fecha de Publicación 2016-08-05
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador joeykeeton
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}