Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Что такое Open in new tab?

Open in new tab - это расширение Chrome, разработанное Ramkumar K R, и его основная функция - "Open links in new tab for a list of specified domains. Useful for sites such as hackernews".

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

screenshot
screenshot

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

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

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

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

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

Название Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
Официальный URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Описание Open links in new tab for a list of specified domains. Useful for sites such as hackernews
Размер файла 101 KB
Количество установок 8,400
Текущая Версия 0.0.15
Последнее Обновление 2020-05-21
Дата публикации 2020-05-21
Рейтинг 3.56/5 Всего 54 оценок
Разработчик Ramkumar K R
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}