Fire Squirrel

Replace a word on a page with another word.

Wat is Fire Squirrel?

Fire Squirrel is een Chrome-extensie ontwikkeld door jennhsu, en de belangrijkste functie is "Replace a word on a page with another word.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Fire Squirrel

Download Fire Squirrel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
Officiële URL https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Beschrijving Replace a word on a page with another word.
Bestandsgrootte 25.95 KB
Aantal Installaties 57
Huidige Versie 0.0.0.5
Laatst Bijgewerkt 2018-07-17
Publicatiedatum 2018-07-16
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar jennhsu
Betalingswijze free
Help Pagina-URL https://github.com/hsubox/fire-squirrel
Ondersteunde Talen 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"
    }
}