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"
    }
}