FastFind

FastFind helps you track multiple pieces of text!

Что такое FastFind?

FastFind - это расширение Chrome, разработанное STK Dev, и его основная функция - "FastFind helps you track multiple pieces of text!".

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

screenshot

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

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

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

                        FastFind helps you easily track multiple pieces of text!
We've included keyboard shortcuts to help you navigate through all selections.

Give it a try!

Github: https://github.com/samuthekid/fastfind                    

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

Название FastFind FastFind
ID pacanidajfeoodnkjnlhjmfnijaeolge
Официальный URL https://chromewebstore.google.com/detail/fastfind/pacanidajfeoodnkjnlhjmfnijaeolge
Описание FastFind helps you track multiple pieces of text!
Размер файла 41.12 KB
Количество установок 22
Текущая Версия 0.9.8.6
Последнее Обновление 2020-03-13
Дата публикации 2020-03-12
Рейтинг 5.00/5 Всего 4 оценок
Разработчик STK Dev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/samuthekid/fastfind
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FastFind",
    "short_name": "FF",
    "description": "FastFind helps you track multiple pieces of text!",
    "version": "0.9.8.6",
    "author": "Samuel Nunes",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "FastFind Settings"
    },
    "content_scripts": [
        {
            "persistent": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "settings\/index.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "fast-find.js",
        "assets\/repeat.png",
        "assets\/pin.png"
    ],
    "minimum_chrome_version": "70",
    "manifest_version": 2
}