What The Duck

A browser extension that replaces the F word with Duck

What The Duck là gì?

What The Duck là một tiện ích mở rộng Chrome được phát triển bởi http://usamaejaz.com, và tính năng chính của nó là "A browser extension that replaces the F word with Duck".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng What The Duck

Tải xuống các tệp mở rộng What The Duck dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên What The Duck What The Duck
ID akcgddilpnbanfbhndpkfcfaemahiacg
URL Chính Thức https://chrome.google.com/webstore/detail/what-the-duck/akcgddilpnbanfbhndpkfcfaemahiacg
Mô tả A browser extension that replaces the F word with Duck
Kích Thước Tệp 35.28 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-01-22
Ngày Phát Hành 2018-01-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://usamaejaz.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://usamaejaz.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}