WordBird

Find and Replace Words on Websites.

Was ist WordBird?

WordBird ist eine Chrome-Erweiterung, die von thalida entwickelt wurde, und ihr Hauptmerkmal ist "Find and Replace Words on Websites.".

Erweiterungsscreenshots

screenshot

WordBird-Erweiterungs-CRX-Datei herunterladen

Laden Sie WordBird-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Ever wanted to replace all instances of "word" with "bird"? Well, now you can! 
As well as any and all other word/phrase replacements your mind can dream of.                    

Grundlegende Informationen zur Erweiterung

Name WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Offizielle URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Beschreibung Find and Replace Words on Websites.
Dateigröße 978 KB
Installationsanzahl 13
Aktuelle Version 1.0.5
Letztes Update 2017-02-17
Veröffentlichungsdatum 2017-02-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler thalida
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/thalida/WordBird
Hilfeseite URL https://github.com/thalida/WordBird/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordBird",
    "description": "Find and Replace Words on Websites.",
    "version": "1.0.5",
    "author": "thalida",
    "homepage_url": "https:\/\/github.com\/thalida\/WordBird",
    "permissions": [
        "storage"
    ],
    "icons": {
        "19": "icons\/icon-on.19.png",
        "48": "icons\/icon-on.48.png",
        "128": "icons\/icon-on.128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-on.19.png",
            "48": "icons\/icon-on.48.png",
            "128": "icons\/icon-on.128.png"
        },
        "default_popup": "public\/dist\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "public\/dist\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}