Selection Popup
Perform customizable actions (Search, Copy etc) on selected text.
Selection Popupคืออะไร?
Selection Popup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mubaidr และคุณลักษณะหลักของมันคือ "Perform customizable actions (Search, Copy etc) on selected text."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Selection Popup
ดาวน์โหลดไฟล์ส่วนขยาย Selection Popup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. You can manage search engines in options, their order of appearance, names etc Enable or disable available commands in the options. Or even use your styles using CSS to customize the look of popup.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ahecgidbcpeicikbcpaljaocofecilpd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd |
คำอธิบาย | Perform customizable actions (Search, Copy etc) on selected text. |
ขนาดไฟล์ | 62.59 KB |
จำนวนการติดตั้ง | 1,000 |
เวอร์ชันปัจจุบัน | 1.9.7 |
อัปเดตครั้งล่าสุด | 2020-02-11 |
วันที่เผยแพร่ | 2020-02-11 |
คะแนน | 4.56/5 รวมทั้งหมด 45 คะแนน |
ผู้พัฒนา | mubaidr |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/mubaidr/selection-popup/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "css": [ ".\/contentScript.css" ], "js": [ ".\/contentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Perform customizable actions (Search, Copy etc) on selected text.", "icons": { "16": "assets\/icons\/icon_48.png", "128": "assets\/icons\/icon_128.png" }, "manifest_version": 2, "name": "Selection Popup", "options_ui": { "page": "options.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "version": "1.9.7" } |