Right Click Translate

Right Click to translate selected text into a new Tab using Google Translate

Right Click Translateคืออะไร?

Right Click Translate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ndingar33 และคุณลักษณะหลักของมันคือ "Right Click to translate selected text into a new Tab using Google Translate"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Right Click Translate

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

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

                        This handy extension helps user to translate selected text into a new chrome tab via context menu. Unlike other in-place translation extensions, this extension keeps the original webpage clean and untouched. It also provides ability to let user choose a prefered target language. 
*1.9.2 fix bug and add create Post for twitter, facebook, reddit                    

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

ชื่อ Right Click Translate Right Click Translate
ID piojkjkndneggfaibepkmabjnkjlhlmk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/right-click-translate/piojkjkndneggfaibepkmabjnkjlhlmk
คำอธิบาย Right Click to translate selected text into a new Tab using Google Translate
ขนาดไฟล์ 75 KB
จำนวนการติดตั้ง 102,715
เวอร์ชันปัจจุบัน 1.9.2
อัปเดตครั้งล่าสุด 2024-01-02
วันที่เผยแพร่ 2018-07-04
คะแนน 4.25/5 รวมทั้งหมด 93 คะแนน
ผู้พัฒนา ndingar33
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.termsfeed.com/live/0bc575cf-9744-4219-93c1-62d012278d21
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right Click Translate",
    "description": "Right Click to translate selected text into a new Tab using Google Translate",
    "version": "1.9.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "src\/popup.html"
    },
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/*.reddit.com\/*"
    ],
    "background": {
        "service_worker": "src\/background.js"
    }
}