uSuperDrag

Drag selected text to search for and link to open in a new tab

Что такое uSuperDrag?

uSuperDrag - это расширение Chrome, разработанное iorate, и его основная функция - "Drag selected text to search for and link to open in a new tab".

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

screenshot

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

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

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

                        This Chrome extension provides "Super Drag" for selected text and link. If you drag-and-drop selected text or link, it will be searched for by the specified search engine (default: Google) or opened in a new tab, respectively.

In addition, this extension enables us to drag link text horizontally and select it, just like Presto Opera.                    

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

Название uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
Официальный URL https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
Описание Drag selected text to search for and link to open in a new tab
Размер файла 18.29 KB
Количество установок 1,260
Текущая Версия 1.2.7
Последнее Обновление 2022-05-07
Дата публикации 2018-06-30
Рейтинг 4.09/5 Всего 11 оценок
Разработчик iorate
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/iorate/uSuperDrag
URL страницы политики конфиденциальности https://iorate.github.io/ublacklist/privacy-policy
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "eventpage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}