XKCD Substitutions - COMPLETE

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

What is XKCD Substitutions - COMPLETE?

XKCD Substitutions - COMPLETE is a Chrome extension developed by Unknown, and its main feature is "Replaces words and phrases in all web pages according to the XKCD Substitutions comics.".

Extension Screenshots

screenshot

Download XKCD Substitutions - COMPLETE Extension CRX File

Download XKCD Substitutions - COMPLETE extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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."                    

Extension Basic Information

Name XKCD Substitutions - COMPLETE XKCD Substitutions - COMPLETE
ID pmjnmockoldbadnfeaddafgjiopknkdj
Official URL https://chromewebstore.google.com/detail/xkcd-substitutions-comple/pmjnmockoldbadnfeaddafgjiopknkdj
Description Replaces words and phrases in all web pages according to the XKCD Substitutions comics.
File Size 8.85 KB
Installation Count 25
Current Version 1.0.1
Last Updated 2016-03-03
Publish Date 2016-03-03
Developer Unknown
Payment Type free
Supported Languages 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"
        }
    ]
}