WordBird

Find and Replace Words on Websites.

WordBird là gì?

WordBird là một tiện ích mở rộng Chrome được phát triển bởi thalida, và tính năng chính của nó là "Find and Replace Words on Websites.".

Ả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 WordBird

Tải xuống các tệp mở rộng WordBird 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

                        Ever wanted to replace all instances of "word" with "bird"? Well, now you can! 
As well as any and all other word/phrase replacements your mind can dream of.                    

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

Tên WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
URL Chính Thức https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Mô tả Find and Replace Words on Websites.
Kích Thước Tệp 978 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2017-02-17
Ngày Phát Hành 2017-02-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển thalida
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/thalida/WordBird
URL Trang Trợ Giúp https://github.com/thalida/WordBird/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordBird",
    "description": "Find and Replace Words on Websites.",
    "version": "1.0.5",
    "author": "thalida",
    "homepage_url": "https:\/\/github.com\/thalida\/WordBird",
    "permissions": [
        "storage"
    ],
    "icons": {
        "19": "icons\/icon-on.19.png",
        "48": "icons\/icon-on.48.png",
        "128": "icons\/icon-on.128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-on.19.png",
            "48": "icons\/icon-on.48.png",
            "128": "icons\/icon-on.128.png"
        },
        "default_popup": "public\/dist\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "public\/dist\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}