WordBird

Find and Replace Words on Websites.

Vad är WordBird?

WordBird är en Chrome-tillägg utvecklad av thalida, och dess huvudfunktion är "Find and Replace Words on Websites.".

Tilläggsskärmbilder

screenshot

Ladda ner WordBird-förlängningens CRX-fil

Ladda ner WordBird-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Officiell webbadress https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Beskrivning Find and Replace Words on Websites.
Filstorlek 978 KB
Antal Installationer 13
Aktuell Version 1.0.5
Senast Uppdaterad 2017-02-17
Publiceringsdatum 2017-02-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare thalida
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/thalida/WordBird
Hjälpsida URL https://github.com/thalida/WordBird/issues
Stödda Språk 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"
        }
    ]
}