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, разработанное zboogs, и его основная функция - "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.

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

                        Chrome recently removed the "Open frame in new tab", and related context menu items. This extension adds them back. It allows you to open a frame or iframe from any webpage in a new tab, new window, or new incognito window. Or you can copy the URL to the clipboard for later use.

Version 7 removes the need to have access to the URLs you visit, since the tabs extension API has been updated such that it is no longer required. Yay. It also fixes the bug where "open in this tab" did not work.                    

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

Название Open Frame Open Frame
ID kdhjgkkaacdhdioocfbpmhjidbinfajj
Официальный URL https://chrome.google.com/webstore/detail/open-frame/kdhjgkkaacdhdioocfbpmhjidbinfajj
Описание Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.
Размер файла 11.22 KB
Количество установок 64,139
Текущая Версия 7
Последнее Обновление 2014-05-11
Дата публикации 2014-05-11
Рейтинг 4.07/5 Всего 219 оценок
Разработчик zboogs
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open Frame",
    "manifest_version": 2,
    "description": "Adds context menu items to open a frame (or iframe) in the current tab, a new tab, new window, or incognito window.",
    "version": "7",
    "permissions": [
        "clipboardWrite",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}