WordBird

Find and Replace Words on Websites.

Что такое WordBird?

WordBird - это расширение Chrome, разработанное thalida, и его основная функция - "Find and Replace Words on Websites.".

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

screenshot

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

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

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

                        Ever wanted to replace all instances of "word" with "bird"? Well, now you can! 
As well as any and all other word/phrase replacements your mind can dream of.                    

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

Название WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Официальный URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Описание Find and Replace Words on Websites.
Размер файла 978 KB
Количество установок 13
Текущая Версия 1.0.5
Последнее Обновление 2017-02-17
Дата публикации 2017-02-17
Рейтинг 5.00/5 Всего 2 оценок
Разработчик thalida
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/thalida/WordBird
URL страницы помощи https://github.com/thalida/WordBird/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordBird",
    "description": "Find and Replace Words on Websites.",
    "version": "1.0.5",
    "author": "thalida",
    "homepage_url": "https:\/\/github.com\/thalida\/WordBird",
    "permissions": [
        "storage"
    ],
    "icons": {
        "19": "icons\/icon-on.19.png",
        "48": "icons\/icon-on.48.png",
        "128": "icons\/icon-on.128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-on.19.png",
            "48": "icons\/icon-on.48.png",
            "128": "icons\/icon-on.128.png"
        },
        "default_popup": "public\/dist\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "public\/dist\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}