Remove Selection

This extension removes selected text.

Remove Selectionคืออะไร?

Remove Selection เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vncnt.liu และคุณลักษณะหลักของมันคือ "This extension removes selected text."

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

screenshot

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

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

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

                        After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.                    

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

ชื่อ Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
คำอธิบาย This extension removes selected text.
ขนาดไฟล์ 10.02 KB
จำนวนการติดตั้ง 118
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-05-11
วันที่เผยแพร่ 2017-08-09
คะแนน 4.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา vncnt.liu
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Selection",
    "description": "This extension removes selected text.",
    "version": "2.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "Remove Selection",
        "default_icon": "images\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}