Algorithm to Wizard

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

Co to jest Algorithm to Wizard?

Algorithm to Wizard to rozszerzenie Chrome opracowane przez chris, a jego główną funkcją jest „Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Algorithm to Wizard

Pobierz pliki rozszerzeń Algorithm to Wizard w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        (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                    

Podstawowe informacje o rozszerzeniu

Nazwa Algorithm to Wizard Algorithm to Wizard
ID paheefgkiimahbclagfhcnehdiengfkb
Oficjalny URL https://chromewebstore.google.com/detail/algorithm-to-wizard/paheefgkiimahbclagfhcnehdiengfkb
Opis Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus
Rozmiar pliku 3.7 KB
Liczba instalacji 19
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2015-08-22
Data Publikacji 2015-08-22
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper chris
Typ Płatności free
Strona Rozszerzenia http://twitter.com/peteyreplies
Adres URL Strony Pomocy https://github.com/peteyreplies/algorithm-to-wizard
Obsługiwane Języki 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"
        }
    ]
}