XKCD Substitutions - COMPLETE

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

Co to jest XKCD Substitutions - COMPLETE?

XKCD Substitutions - COMPLETE to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Replaces words and phrases in all web pages according to the XKCD Substitutions comics.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia XKCD Substitutions - COMPLETE

Pobierz pliki rozszerzeń XKCD Substitutions - COMPLETE 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

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

Podstawowe informacje o rozszerzeniu

Nazwa XKCD Substitutions - COMPLETE XKCD Substitutions - COMPLETE
ID pmjnmockoldbadnfeaddafgjiopknkdj
Oficjalny URL https://chromewebstore.google.com/detail/xkcd-substitutions-comple/pmjnmockoldbadnfeaddafgjiopknkdj
Opis Replaces words and phrases in all web pages according to the XKCD Substitutions comics.
Rozmiar pliku 8.85 KB
Liczba instalacji 25
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-03-03
Data Publikacji 2016-03-03
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}