iFrame'd it!

Put any video in an iframe, with one click!

Что такое iFrame'd it!?

iFrame'd it! - это расширение Chrome, разработанное joeykeeton, и его основная функция - "Put any video in an iframe, with one click!".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения iFrame'd it!

Скачайте файлы расширений iFrame'd it! в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
Официальный URL https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Описание Put any video in an iframe, with one click!
Размер файла 268 KB
Количество установок 73
Текущая Версия 0.1
Последнее Обновление 2016-08-06
Дата публикации 2016-08-05
Рейтинг 5.00/5 Всего 1 оценок
Разработчик joeykeeton
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}