What The Duck

A browser extension that replaces the F word with Duck

Was ist What The Duck?

What The Duck ist eine Chrome-Erweiterung, die von http://usamaejaz.com entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension that replaces the F word with Duck".

Erweiterungsscreenshots

screenshot

What The Duck-Erweiterungs-CRX-Datei herunterladen

Laden Sie What The Duck-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

                        A simple browser extension which replaces the F word with "duck".

Features:
- Replaces the F word with "duck"
- Allows you to exclude specific sites
- Shows the count of ducks in browser toolbar                    

Grundlegende Informationen zur Erweiterung

Name What The Duck What The Duck
ID akcgddilpnbanfbhndpkfcfaemahiacg
Offizielle URL https://chrome.google.com/webstore/detail/what-the-duck/akcgddilpnbanfbhndpkfcfaemahiacg
Beschreibung A browser extension that replaces the F word with Duck
Dateigröße 35.28 KB
Installationsanzahl 73
Aktuelle Version 0.0.1
Letztes Update 2018-01-22
Veröffentlichungsdatum 2018-01-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://usamaejaz.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://usamaejaz.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "webNavigation",
        ""
    ],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    }
}