Fire Squirrel

Replace a word on a page with another word.

Co je Fire Squirrel?

Fire Squirrel je rozšíření Chrome vyvinuté jennhsu, a jeho hlavní funkcí je „Replace a word on a page with another word.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Fire Squirrel

Stáhněte si soubory rozšíření Fire Squirrel ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
Oficiální URL https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Popis Replace a word on a page with another word.
Velikost souboru 25.95 KB
Počet instalací 57
Aktuální Verze 0.0.0.5
Poslední Aktualizace 2018-07-17
Datum Vydání 2018-07-16
Hodnocení 3.75/5 Celkem 4 Hodnocení
Vývojář jennhsu
Typ Platby free
URL Stránky Nápovědy https://github.com/hsubox/fire-squirrel
Podporované Jazyky 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"
    }
}