iFrame'd it!

Put any video in an iframe, with one click!

O que é iFrame'd it!?

iFrame'd it! é uma extensão do Chrome desenvolvida por joeykeeton, e sua principal característica é "Put any video in an iframe, with one click!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão iFrame'd it!

Baixe arquivos de extensão iFrame'd it! no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
URL Oficial https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Descrição Put any video in an iframe, with one click!
Tamanho do Arquivo 268 KB
Contagem de Instalações 73
Versão Atual 0.1
Última Atualização 2016-08-06
Data de Publicação 2016-08-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor joeykeeton
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}