Cloud to Butt Redux

Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.

Was ist Cloud to Butt Redux?

Cloud to Butt Redux ist eine Chrome-Erweiterung, die von Techjar entwickelt wurde, und ihr Hauptmerkmal ist "Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.".

Erweiterungsscreenshots

screenshot

Cloud to Butt Redux-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloud to Butt Redux-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

                        Improvements to a previous version of this extension, namely it will no longer replace textarea contents. Old version here: https://github.com/hank/cloud-to-butt

My version: https://github.com/Techjar/cloud-to-butt                    

Grundlegende Informationen zur Erweiterung

Name Cloud to Butt Redux Cloud to Butt Redux
ID mghonbmkhoeammefiikcjdjaikniefnk
Offizielle URL https://chrome.google.com/webstore/detail/cloud-to-butt-redux/mghonbmkhoeammefiikcjdjaikniefnk
Beschreibung Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.
Dateigröße 40.75 KB
Installationsanzahl 160
Aktuelle Version 1.3.5
Letztes Update 2018-01-08
Veröffentlichungsdatum 2018-01-08
Bewertung 4.14/5 Insgesamt 7 Bewertungen
Entwickler Techjar
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cloud to Butt Redux",
    "version": "1.3.5",
    "description": "Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/titlecapitalization.com\/*",
                "*:\/\/hangouts.google.com\/*",
                "*:\/\/docs.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/discordapp.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ]
}