Paste From Context Menu
This extension allows you to save predefined snippets and paste them to text inputs using context menu.
Paste From Context Menuคืออะไร?
Paste From Context Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย coder และคุณลักษณะหลักของมันคือ "This extension allows you to save predefined snippets and paste them to text inputs using context menu."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste From Context Menu
ดาวน์โหลดไฟล์ส่วนขยาย Paste From Context Menu ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Paste From Context Menu |
ID | ihfogeehoikadinpdoeapemeolcppfjf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf |
คำอธิบาย | This extension allows you to save predefined snippets and paste them to text inputs using context menu. |
ขนาดไฟล์ | 20.88 KB |
จำนวนการติดตั้ง | 3,181 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2016-10-14 |
วันที่เผยแพร่ | 2016-10-14 |
คะแนน | 3.74/5 รวมทั้งหมด 23 คะแนน |
ผู้พัฒนา | coder |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste From Context Menu", "short_name": "pastefromcontextmenu", "version": "1.0.1", "author": "Coder", "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.", "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "contextMenus", "clipboardRead", "clipboardWrite", "activeTab", "storage" ], "browser_action": { "default_title": "Paste From Context Menu", "default_icon": "icons\/48x48.png", "default_popup1": "popup.html" } } |