iFrame'd it!

Put any video in an iframe, with one click!

iFrame'd it! là gì?

iFrame'd it! là một tiện ích mở rộng Chrome được phát triển bởi joeykeeton, và tính năng chính của nó là "Put any video in an iframe, with one click!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng iFrame'd it!

Tải xuống các tệp mở rộng iFrame'd it! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên iFrame'd it! iFrame'd it!
ID fajooocnppkgfcogkldkjgamdikhbohk
URL Chính Thức https://chromewebstore.google.com/detail/iframed-it/fajooocnppkgfcogkldkjgamdikhbohk
Mô tả Put any video in an iframe, with one click!
Kích Thước Tệp 268 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-08-06
Ngày Phát Hành 2016-08-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển joeykeeton
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}