Website text content replacer

Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.

Website text content replacerคืออะไร?

Website text content replacer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย victooor และคุณลักษณะหลักของมันคือ "Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website text content replacer

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

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

                        This extension lets you change some content (words, phrases etc.) to more familiar or enjoyable ones. 

How does it work: 

You define a website on which you want the content to be changed and the actual content to be replaced. When the url is matching, the text replacement will take place. 

To set up replacement values after you installed "Website text content replacer":
1) type chrome://extensions in the address bar
2) click on extensions "Details" button
3) click on "Extension options"

Remember to save your replacement values

If you find bugs please create issues here: https://github.com/victooor/HtmlTextContentReplacer

You are more than welcome to contribute :)                    

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

ชื่อ Website text content replacer Website text content replacer
ID fmbchninojmfdlimbakaohgodgjpihcc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/website-text-content-repl/fmbchninojmfdlimbakaohgodgjpihcc
คำอธิบาย Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.
ขนาดไฟล์ 156 KB
จำนวนการติดตั้ง 727
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2020-01-13
วันที่เผยแพร่ 2020-01-13
คะแนน 4.00/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา victooor
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website text content replacer",
    "description": "Lets you change some content (words, phrases etc) on a website to more familiar or enjoyable ones.",
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "index.html#\/options",
    "browser_action": {
        "default_title": "Open Popup!",
        "default_popup": "index.html#\/popup"
    },
    "icons": {
        "16": "assets\/images\/html16.png",
        "32": "assets\/images\/html32.png",
        "48": "assets\/images\/html48.png",
        "128": "assets\/images\/html128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "executer.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}