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
官方URL 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"
    }
}