Fire Squirrel

Replace a word on a page with another word.

Τι είναι το Fire Squirrel;

Το Fire Squirrel είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jennhsu, και η κύρια λειτουργία του είναι "Replace a word on a page with another word.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Fire Squirrel

Λήψη αρχείων επέκτασης Fire Squirrel σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
Επίσημο URL https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
Περιγραφή Replace a word on a page with another word.
Μέγεθος Αρχείου 25.95 KB
Αριθμός Εγκαταστάσεων 57
Τρέχουσα Έκδοση 0.0.0.5
Τελευταία Ενημέρωση 2018-07-17
Ημερομηνία Δημοσίευσης 2018-07-16
Αξιολόγηση 3.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής jennhsu
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/hsubox/fire-squirrel
Υποστηριζόμενες Γλώσσες 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"
    }
}