WordBird

Find and Replace Words on Websites.

ما هو WordBird؟

WordBird هو إضافة Chrome تم تطويرها بواسطة thalida، والميزة الرئيسية لها هي "Find and Replace Words on Websites.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة WordBird

قم بتنزيل ملفات الامتداد WordBird بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم WordBird WordBird
ID phjelaokjghhjogbfmkljhghhnbidfgk
عنوان URL الرسمي https://chrome.google.com/webstore/detail/wordbird/phjelaokjghhjogbfmkljhghhnbidfgk
الوصف Find and Replace Words on Websites.
حجم الملف 978 KB
عدد التثبيتات 13
النسخة الحالية 1.0.5
آخر تحديث 2017-02-17
تاريخ النشر 2017-02-17
تقييم 5.00/5 مجموع تقييمات 2
المطور thalida
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/thalida/WordBird
عنوان صفحة المساعدة https://github.com/thalida/WordBird/issues
اللغات المدعومة 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"
        }
    ]
}