Replace Text

Adds replace text to context menu.

Replace Textคืออะไร?

Replace Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danny Keeley และคุณลักษณะหลักของมันคือ "Adds replace text to context menu."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

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

ชื่อ Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
คำอธิบาย Adds replace text to context menu.
ขนาดไฟล์ 10.45 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2021-05-10
วันที่เผยแพร่ 2021-05-08
ผู้พัฒนา Danny Keeley
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}