Selection Highlighter

Automatically highlight all occurrences of current selection on current page.

Что такое Selection Highlighter?

Selection Highlighter - это расширение Chrome, разработанное Tao, и его основная функция - "Automatically highlight all occurrences of current selection on current page.".

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

screenshot
screenshot
screenshot

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

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

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

                        Selection highlighter will help you automatically highlight all occurrences of current selection on current page, also works for shadow DOM pages.
The extension also allow you to toggle on/off the feature from options page, also change the default configurations like highlight color etc

Release notes:

v0.0.3:
- Allow config the threshold to ignore selection when apply highlighting
- Always ignore `style` tag when highlighting, avoid messing up the page                    

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

Название Selection Highlighter Selection Highlighter
ID maafgdeicpceceblgclafehagjndfjig
Официальный URL https://chromewebstore.google.com/detail/selection-highlighter/maafgdeicpceceblgclafehagjndfjig
Описание Automatically highlight all occurrences of current selection on current page.
Размер файла 96.84 KB
Количество установок 112
Текущая Версия 0.0.3
Последнее Обновление 2020-07-17
Дата публикации 2020-06-03
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Tao
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/taoalpha/selection-highlighter
URL страницы помощи https://github.com/taoalpha/selection-highlighter
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selection Highlighter",
    "description": "Automatically highlight all occurrences of current selection on current page.",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Selection Highlighter"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'unsafe-inline'; connect-src https:\/\/*",
    "permissions": [
        "activeTab",
        "",
        "storage",
        "tabs"
    ]
}