Fire Squirrel

Replace a word on a page with another word.

Qu'est-ce que Fire Squirrel ?

Fire Squirrel est une extension Chrome développée par jennhsu, et sa fonction principale est "Replace a word on a page with another word.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Fire Squirrel

Téléchargez les fichiers d'extension Fire Squirrel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
URL Officiel https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Description Replace a word on a page with another word.
Taille du Fichier 25.95 KB
Nombre d'Installations 57
Version Actuelle 0.0.0.5
Dernière Mise à Jour 2018-07-17
Date de Publication 2018-07-16
Évaluation 3.75/5 Total 4 Évaluations
Développeur jennhsu
Type de Paiement free
URL de la Page d'Aide https://github.com/hsubox/fire-squirrel
Langues Prises en Charge 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"
    }
}