Fire Squirrel

Replace a word on a page with another word.

什麼是Fire Squirrel?

Fire Squirrel是由jennhsu開發的Chrome擴展程式,該擴展的主要功能是“Replace a word on a page with another word.”。

擴展截圖

screenshot
screenshot
screenshot

下載Fire Squirrel擴展crx文件

下載Fire Squirrel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
官方網址 https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
簡介 Replace a word on a page with another word.
檔案大小 25.95 KB
安裝次數 57
目前版本 0.0.0.5
更新時間 2018-07-17
上架時間 2018-07-16
評分 3.75/5 共 4 次評分
開發者 jennhsu
付費類型 free
說明頁面URL https://github.com/hsubox/fire-squirrel
支援的語言 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"
    }
}