WordBird

Find and Replace Words on Websites.

Wat is WordBird?

WordBird is een Chrome-extensie ontwikkeld door thalida, en de belangrijkste functie is "Find and Replace Words on Websites.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie WordBird

Download WordBird-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Officiële URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Beschrijving Find and Replace Words on Websites.
Bestandsgrootte 978 KB
Aantal Installaties 13
Huidige Versie 1.0.5
Laatst Bijgewerkt 2017-02-17
Publicatiedatum 2017-02-17
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar thalida
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/thalida/WordBird
Help Pagina-URL https://github.com/thalida/WordBird/issues
Ondersteunde Talen 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"
        }
    ]
}