Fire Squirrel

Replace a word on a page with another word.

Hvad er Fire Squirrel?

Fire Squirrel er en Chrome-udvidelse udviklet af jennhsu, og dens hovedfunktion er "Replace a word on a page with another word.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Fire Squirrel-udvidelses-CRX-fil

Download Fire Squirrel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
Officiel URL https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Beskrivelse Replace a word on a page with another word.
Filstørrelse 25.95 KB
Antal Installationer 57
Nuværende Version 0.0.0.5
Senest Opdateret 2018-07-17
Udgivelsesdato 2018-07-16
Bedømmelse 3.75/5 Samlet 4 Bedømmelser
Udvikler jennhsu
Betalingsmetode free
Hjælpeside-URL https://github.com/hsubox/fire-squirrel
Understøttede Sprog 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"
    }
}