Text Changer

This extension allows you to change some words for other.

Text Changerคืออะไร?

Text Changer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension allows you to change some words for other."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text Changer

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

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

                        This Chrome extension lets you change text on pages that you navigate.

Features:
- Add multiple words;
- Badge shows the ammount of text changed;
- Disable badge;
- Updates text efficiently when the DOM is changed.                    

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

ชื่อ Text Changer Text Changer
ID fabkbngakgpgbfjcgniagacieofijajm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/text-changer/fabkbngakgpgbfjcgniagacieofijajm
คำอธิบาย This extension allows you to change some words for other.
ขนาดไฟล์ 45.17 KB
จำนวนการติดตั้ง 1,491
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2018-07-30
วันที่เผยแพร่ 2018-07-29
คะแนน 4.27/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marcioggs/text-changer-chrome-extension
URL หน้าช่วยเหลือ https://github.com/marcioggs/text-changer-chrome-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Changer",
    "version": "1.0.0",
    "description": "This extension allows you to change some words for other.",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "author": "M\u00e1rcio Gabriel",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/changeText.js"
            ]
        }
    ],
    "options_page": "pages\/options.html",
    "homepage_url": "https:\/\/github.com\/marcioggs\/text-changer-chrome-extension",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "scripts\/onInstalled.js",
            "scripts\/badge.js"
        ],
        "persistent": false
    }
}