WordBird

Find and Replace Words on Websites.

Hvad er WordBird?

WordBird er en Chrome-udvidelse udviklet af thalida, og dens hovedfunktion er "Find and Replace Words on Websites.".

Udvidelsesskærmbilleder

screenshot

Download WordBird-udvidelses-CRX-fil

Download WordBird-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Officiel URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Beskrivelse Find and Replace Words on Websites.
Filstørrelse 978 KB
Antal Installationer 13
Nuværende Version 1.0.5
Senest Opdateret 2017-02-17
Udgivelsesdato 2017-02-17
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler thalida
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/thalida/WordBird
Hjælpeside-URL https://github.com/thalida/WordBird/issues
Understøttede Sprog 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"
        }
    ]
}