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?

Open Frame - это расширение Chrome, разработанное ccrawford1250, и его основная функция - "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.".

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

screenshot

Скачать файл CRX расширения Open Frame

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

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

                        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.                    

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

Название Open Frame Open Frame
ID afoejdbdbdfpdhhemjoojjagmcpjjpla
Официальный URL https://chromewebstore.google.com/detail/open-frame/afoejdbdbdfpdhhemjoojjagmcpjjpla
Описание Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Размер файла 10.83 KB
Количество установок 4,616
Текущая Версия 1.0
Последнее Обновление 2023-07-24
Дата публикации 2023-07-24
Рейтинг 5.00/5 Всего 8 оценок
Разработчик ccrawford1250
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}