Select Search
Select -> Search / Translate / Go to link
Select Searchคืออะไร?
Select Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xuqingfeng และคุณลักษณะหลักของมันคือ "Select -> Search / Translate / Go to link"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Select Search
ดาวน์โหลดไฟล์ส่วนขยาย Select Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
In macOS / Windows:
⌘/ + G - search selected text with different search engine( Google, Bing, Sogou ... )
⌘/ + E - translate selected text
⌘/ + B - jump to selected link
Note: shortcuts are customizable in extension's Options page ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | hlnpaciomjjnpmbjedfmlnkhogngmleh |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh |
| คำอธิบาย | Select -> Search / Translate / Go to link |
| ขนาดไฟล์ | 2.21 MB |
| จำนวนการติดตั้ง | 13 |
| เวอร์ชันปัจจุบัน | 3.2.0 |
| อัปเดตครั้งล่าสุด | 2023-11-01 |
| วันที่เผยแพร่ | 2016-06-22 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | xuqingfeng |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/xuqingfeng/Select-Search |
| ภาษาที่รองรับ | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Select Search",
"version": "3.2.0",
"description": "Select -> Search \/ Translate \/ Go to link",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_icon": "icons\/icon48.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"default_locale": "en",
"permissions": [
"storage"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
]
} | |