Algorithm to Wizard

Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus

Что такое Algorithm to Wizard?

Algorithm to Wizard - это расширение Chrome, разработанное chris, и его основная функция - "Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus".

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

screenshot
screenshot

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

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

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

                        (should) take(s) instances of the word 'algorithm' and replaces it with 'wizard'. 

code here: https://github.com/peteyreplies/algorithm-to-wizard
based on: https://github.com/hank/cloud-to-butt

update 8/20/15: fixed *most* 'an wizard' instances, although still breaking on some formatted ones for reasons that are as yet unclear to me 

update 8/22/15: incorporated @s2tephen bug fix                    

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

Название Algorithm to Wizard Algorithm to Wizard
ID paheefgkiimahbclagfhcnehdiengfkb
Официальный URL https://chromewebstore.google.com/detail/algorithm-to-wizard/paheefgkiimahbclagfhcnehdiengfkb
Описание Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus
Размер файла 3.7 KB
Количество установок 19
Текущая Версия 1.3
Последнее Обновление 2015-08-22
Дата публикации 2015-08-22
Рейтинг 5.00/5 Всего 1 оценок
Разработчик chris
Тип оплаты free
Официальный сайт расширения http://twitter.com/peteyreplies
URL страницы помощи https://github.com/peteyreplies/algorithm-to-wizard
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Algorithm to Wizard",
    "version": "1.3",
    "description": "Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}