Fire Squirrel

Replace a word on a page with another word.

Fire Squirrel là gì?

Fire Squirrel là một tiện ích mở rộng Chrome được phát triển bởi jennhsu, và tính năng chính của nó là "Replace a word on a page with another word.".

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

screenshot
screenshot
screenshot

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

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

                        This squirrel is on fire!
A word replacing extension for Google Chrome

Defaults to replacing the word "girl" with "squirrel". You can pick your own words (or even emojis) on the options page. Now also supports updating URLs, Regular Expressions (regex), and whitelisting/blacklisting URLs to change.

Test it out by searching for the following song lyrics:
Primadonna Girl - Marina and the Diamonds
Run The World (Girls) - Beyoncé
Girl On Fire - Alicia Keys

Contribute at https://github.com/hsubox/fire-squirrel                    

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

Tên Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
URL Chính Thức https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Mô tả Replace a word on a page with another word.
Kích Thước Tệp 25.95 KB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 0.0.0.5
Cập Nhật Lần Cuối 2018-07-17
Ngày Phát Hành 2018-07-16
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jennhsu
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/hsubox/fire-squirrel
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fire Squirrel",
    "version": "0.0.0.5",
    "description": "Replace a word on a page with another word.",
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "onInstalled.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "findAndReplaceDOMText.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-96.png",
        "default_title": "Fire Squirrel"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icon-48.png",
        "96": "icon-96.png",
        "128": "icon-128.png"
    }
}