WordBird

Find and Replace Words on Websites.

Apa itu WordBird?

WordBird adalah ekstensi Chrome yang dikembangkan oleh thalida, dan fitur utamanya adalah "Find and Replace Words on Websites.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi WordBird

Unduh file ekstensi WordBird dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
URL Resmi https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
Deskripsi Find and Replace Words on Websites.
Ukuran File 978 KB
Jumlah Instalasi 13
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2017-02-17
Tanggal Publikasi 2017-02-17
Penilaian 5.00/5 Total 2 Penilaian
Pengembang thalida
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/thalida/WordBird
URL Halaman Bantuan https://github.com/thalida/WordBird/issues
Bahasa yang Didukung 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"
        }
    ]
}