Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

Что такое Selection Menu?

Selection Menu - это расширение Chrome, разработанное mad1ost, и его основная функция - "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

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

screenshot
screenshot

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

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

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

                        Select the text and click on one of the buttons in the pop-up menu (copy or search in Google (or other search engines)). See extension preferences to choose your own search engine.                    

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

Название Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
Официальный URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Описание Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Размер файла 14.32 KB
Количество установок 51
Текущая Версия 3.1.0
Последнее Обновление 2024-02-01
Дата публикации 2020-06-27
Рейтинг 5.00/5 Всего 3 оценок
Разработчик mad1ost
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mad1ost/selection-menu
URL страницы помощи https://github.com/mad1ost/selection-menu/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Menu",
    "version": "3.1.0",
    "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
    "homepage_url": "https:\/\/github.com\/mad1ost\/selection-menu",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "selection-menu.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "selection-menu-sub.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}