Word Replace And Load

Replace all words you in your current page to anything you want!

Word Replace And Loadคืออะไร?

Word Replace And Load เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jerryblum.ideas และคุณลักษณะหลักของมันคือ "Replace all words you in your current page to anything you want!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Word Replace And Load

ดาวน์โหลดไฟล์ส่วนขยาย Word Replace And Load ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension allows users to easily replace a specific word with a different word of their choosing on any webpage. Simply type in the word you wish to replace and the word you want to use as a replacement, and the extension will automatically replace every instance of the chosen word on the page. This can be useful for correcting typos, updating outdated language, or simply personalizing the content of a webpage to your liking. The extension works on any website and can even be used to replace words within text forms, making it a versatile and convenient tool for modifying web content!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Word Replace And Load Word Replace And Load
ID pbjnbneghgdchjkbeiifmfigjcgbefoi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/word-replace-and-load/pbjnbneghgdchjkbeiifmfigjcgbefoi
คำอธิบาย Replace all words you in your current page to anything you want!
ขนาดไฟล์ 18.75 KB
จำนวนการติดตั้ง 3,635
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2022-12-26
วันที่เผยแพร่ 2022-12-26
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา jerryblum.ideas
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://home.wallationdistry.xyz/
URL หน้าช่วยเหลือ https://home.wallationdistry.xyz/contact.html
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Replace all words you in your current page to anything you want!",
    "icons": {
        "128": "logo.png"
    },
    "action": {
        "default_icon": "logo.png",
        "default_title": "Word Replace And Load",
        "default_popup": "popup.html"
    },
    "manifest_version": 3,
    "name": "Word Replace And Load",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}