What The Duck

A browser extension that replaces the F word with Duck

What The Duck란 무엇입니까?

What The Duck은(는) http://usamaejaz.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that replaces the F word with Duck"입니다.

확장 프로그램 스크린샷

screenshot

What The Duck 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 What The Duck What The Duck
ID akcgddilpnbanfbhndpkfcfaemahiacg
공식 URL https://chrome.google.com/webstore/detail/what-the-duck/akcgddilpnbanfbhndpkfcfaemahiacg
설명 A browser extension that replaces the F word with Duck
파일 크기 35.28 KB
설치 횟수 73
현재 버전 0.0.1
최근 업데이트 2018-01-22
출시 날짜 2018-01-22
평점 5.00/5 총 2 개의 평점
개발자 http://usamaejaz.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://usamaejaz.com
지원되는 언어 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"
    }
}