Fire Squirrel

Replace a word on a page with another word.

O que é Fire Squirrel?

Fire Squirrel é uma extensão do Chrome desenvolvida por jennhsu, e sua principal característica é "Replace a word on a page with another word.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Fire Squirrel

Baixe arquivos de extensão Fire Squirrel no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
URL Oficial https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Descrição Replace a word on a page with another word.
Tamanho do Arquivo 25.95 KB
Contagem de Instalações 57
Versão Atual 0.0.0.5
Última Atualização 2018-07-17
Data de Publicação 2018-07-16
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor jennhsu
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/hsubox/fire-squirrel
Idiomas Suportados 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"
    }
}