Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

Что такое Duplicate Tab Hotkey?

Duplicate Tab Hotkey - это расширение Chrome, разработанное Elijah Verdoorn, и его основная функция - "Adds a hotkey for duplicating the current tab.".

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

screenshot

Скачать файл CRX расширения Duplicate Tab Hotkey

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

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

                        A simple, free, libre, open-source extension requiring no permissions that adds a hotkey to Chrome for duplicating the current tab. No tracking is used in this extension, which also requires no special permissions. Users are welcome to view the complete source code (https://github.com/elijahverdoorn/duplicate-tab-extension) in order to ensure confidence that their browsing remains private.

Right now, the hotkey is configured to be Ctrl+Shift+E on Windows and Command+Shift+E on Mac. In future versions the hotkey may become configurable.                    

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

Название Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
Официальный URL https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
Описание Adds a hotkey for duplicating the current tab.
Размер файла 58.09 KB
Количество установок 91
Текущая Версия 1.1.0
Последнее Обновление 2020-01-24
Дата публикации 2020-01-24
Разработчик Elijah Verdoorn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://elijahverdoorn.com
URL страницы помощи https://elijahverdoorn.com/contact
URL страницы политики конфиденциальности https://elijahverdoorn.com/chrome-tab-duplicator-privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duplicate Tab Hotkey",
    "version": "1.1.0",
    "description": "Adds a hotkey for duplicating the current tab.",
    "browser_action": {
        "default_popup": "about.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "duplicate-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Duplicate the current tab."
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_ui": {
        "page": "about.html",
        "open_in_tab": false
    },
    "manifest_version": 2
}