Algorithm to Wizard

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

Was ist Algorithm to Wizard?

Algorithm to Wizard ist eine Chrome-Erweiterung, die von chris entwickelt wurde, und ihr Hauptmerkmal ist "Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus".

Erweiterungsscreenshots

screenshot
screenshot

Algorithm to Wizard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Algorithm to Wizard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        (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                    

Grundlegende Informationen zur Erweiterung

Name Algorithm to Wizard Algorithm to Wizard
ID paheefgkiimahbclagfhcnehdiengfkb
Offizielle URL https://chromewebstore.google.com/detail/algorithm-to-wizard/paheefgkiimahbclagfhcnehdiengfkb
Beschreibung Replaces the text 'algorithm(s)' with 'wizard(s)'; based on Cloud To Butt Plus
Dateigröße 3.7 KB
Installationsanzahl 19
Aktuelle Version 1.3
Letztes Update 2015-08-22
Veröffentlichungsdatum 2015-08-22
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler chris
Zahlungsart free
Erweiterungswebsite http://twitter.com/peteyreplies
Hilfeseite URL https://github.com/peteyreplies/algorithm-to-wizard
Unterstützte Sprachen 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"
        }
    ]
}