WordBird

Find and Replace Words on Websites.

Co to jest WordBird?

WordBird to rozszerzenie Chrome opracowane przez thalida, a jego główną funkcją jest „Find and Replace Words on Websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia WordBird

Pobierz pliki rozszerzeń WordBird w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
Oficjalny URL https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Opis Find and Replace Words on Websites.
Rozmiar pliku 978 KB
Liczba instalacji 13
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2017-02-17
Data Publikacji 2017-02-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper thalida
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/thalida/WordBird
Adres URL Strony Pomocy https://github.com/thalida/WordBird/issues
Obsługiwane Języki 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"
        }
    ]
}