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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
            ]
        }
    ]
}