Global Replace All

A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…

ما هو Global Replace All؟

Global Replace All هو إضافة Chrome تم تطويرها بواسطة GirkovArpa، والميزة الرئيسية لها هي "A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…".

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

screenshot

تحميل ملف CRX للإضافة Global Replace All

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

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

                        A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab is loaded.                    

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

الاسم Global Replace All Global Replace All
ID fkijnilmlghjfhphomnpgeejddbmlppm
عنوان URL الرسمي https://chromewebstore.google.com/detail/global-replace-all/fkijnilmlghjfhphomnpgeejddbmlppm
الوصف A Chrome extension to automatically find and replace in all tabs in all textareas and inputs upon enter press, and as soon as a tab…
حجم الملف 16.89 KB
عدد التثبيتات 44
النسخة الحالية 0.0.0.2
آخر تحديث 2020-10-05
تاريخ النشر 2020-06-05
تقييم 3.00/5 مجموع تقييمات 2
المطور GirkovArpa
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/GirkovArpa/global-replace-all/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Replace All",
    "permissions": [
        "tabs",
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "version": "0.0.0.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "Global Replace All",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}