Cloud to Butt Redux

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

Vad är Cloud to Butt Redux?

Cloud to Butt Redux är en Chrome-tillägg utvecklad av Techjar, och dess huvudfunktion är "Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.".

Tilläggsskärmbilder

screenshot

Ladda ner Cloud to Butt Redux-förlängningens CRX-fil

Ladda ner Cloud to Butt Redux-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Cloud to Butt Redux Cloud to Butt Redux
ID mghonbmkhoeammefiikcjdjaikniefnk
Officiell webbadress https://chrome.google.com/webstore/detail/cloud-to-butt-redux/mghonbmkhoeammefiikcjdjaikniefnk
Beskrivning Replaces the text 'the cloud' with 'my butt', as well as 'cloud' with 'butt' in certain contexts.
Filstorlek 40.75 KB
Antal Installationer 160
Aktuell Version 1.3.5
Senast Uppdaterad 2018-01-08
Publiceringsdatum 2018-01-08
Betyg 4.14/5 Totalt 7 Betyg
Utvecklare Techjar
Betalningssätt free
Stödda Språk 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
        }
    ]
}