XKCD Substitutions - COMPLETE

Replaces words and phrases in all web pages according to the XKCD Substitutions comics.

Was ist XKCD Substitutions - COMPLETE?

XKCD Substitutions - COMPLETE ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Replaces words and phrases in all web pages according to the XKCD Substitutions comics.".

Erweiterungsscreenshots

screenshot

XKCD Substitutions - COMPLETE-Erweiterungs-CRX-Datei herunterladen

Laden Sie XKCD Substitutions - COMPLETE-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

                        Now 142% more suitable for human consumption with the release of v1.0!

This extension replaces words and phrases in all web pages according to both XKCD Substitutions comics (https://xkcd.com/1288/ and http://xkcd.com/1625/).

While other extensions do exist which implement one or both of these Substitutions, I built this extension for personal use because I felt like some things could be done more intelligently. For instance, this extension will turn "car" into "cat," but it won't turn "cartoon" into "cattoon."                    

Grundlegende Informationen zur Erweiterung

Name XKCD Substitutions - COMPLETE XKCD Substitutions - COMPLETE
ID pmjnmockoldbadnfeaddafgjiopknkdj
Offizielle URL https://chromewebstore.google.com/detail/xkcd-substitutions-comple/pmjnmockoldbadnfeaddafgjiopknkdj
Beschreibung Replaces words and phrases in all web pages according to the XKCD Substitutions comics.
Dateigröße 8.85 KB
Installationsanzahl 25
Aktuelle Version 1.0.1
Letztes Update 2016-03-03
Veröffentlichungsdatum 2016-03-03
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XKCD Substitutions - COMPLETE",
    "description": "Replaces words and phrases in all web pages according to the XKCD Substitutions comics.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}