Open Frame

Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.

Open Frame là gì?

Open Frame là một tiện ích mở rộng Chrome được phát triển bởi ccrawford1250, và tính năng chính của nó là "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Open Frame

Tải xuống các tệp mở rộng Open Frame 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

                        Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window. This extension will copy and use the frame URL to open the new tab or window.                    

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

Tên Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
URL Chính Thức https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Mô tả Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Kích Thước Tệp 10.83 KB
Số Lần Cài Đặt 4,616
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-07-24
Ngày Phát Hành 2023-07-24
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển ccrawford1250
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Frame",
    "version": "1.0",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "description": "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "contextMenus"
    ]
}