Fire Squirrel

Replace a word on a page with another word.

Co to jest Fire Squirrel?

Fire Squirrel to rozszerzenie Chrome opracowane przez jennhsu, a jego główną funkcją jest „Replace a word on a page with another word.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Fire Squirrel

Pobierz pliki rozszerzeń Fire Squirrel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
Oficjalny URL https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Opis Replace a word on a page with another word.
Rozmiar pliku 25.95 KB
Liczba instalacji 57
Aktualna Wersja 0.0.0.5
Ostatnia Aktualizacja 2018-07-17
Data Publikacji 2018-07-16
Ocena 3.75/5 Łącznie 4 Oceny
Deweloper jennhsu
Typ Płatności free
Adres URL Strony Pomocy https://github.com/hsubox/fire-squirrel
Obsługiwane Języki 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"
    }
}