WordBird

Find and Replace Words on Websites.

Qu'est-ce que WordBird ?

WordBird est une extension Chrome développée par thalida, et sa fonction principale est "Find and Replace Words on Websites.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension WordBird

Téléchargez les fichiers d'extension WordBird au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
URL Officiel https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Description Find and Replace Words on Websites.
Taille du Fichier 978 KB
Nombre d'Installations 13
Version Actuelle 1.0.5
Dernière Mise à Jour 2017-02-17
Date de Publication 2017-02-17
Évaluation 5.00/5 Total 2 Évaluations
Développeur thalida
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thalida/WordBird
URL de la Page d'Aide https://github.com/thalida/WordBird/issues
Langues Prises en Charge 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"
        }
    ]
}