Clipboard Inserter
A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
Clipboard Inserterคืออะไร?
Clipboard Inserter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clipboard Inserter
ดาวน์โหลดไฟล์ส่วนขยาย Clipboard Inserter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This addon, when turned on in a tab monitors your system clipboard and inserts its contents into the page whenever they change. You can customize tag name of the wrapping element, and chose the parent for inserted elements using a css selector in app options. In order for this extension to work on local files (the file:// protocol) you need to change the "Allow access to file URLs" setting in the extension details. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Clipboard Inserter |
ID | deahejllghicakhplliloeheabddjajm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm |
คำอธิบาย | A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY |
ขนาดไฟล์ | 10.28 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 0.3.2 |
อัปเดตครั้งล่าสุด | 2018-12-06 |
วันที่เผยแพร่ | 2018-12-06 |
คะแนน | 4.50/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/kmltml/clipboard-inserter |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clipboard Inserter", "version": "0.3.2", "description": "A simple addon that inserts clipboard contents into the page. Uses icon made by Google from www.flaticon.com licensed by CC 3.0 BY", "icons": [], "applications": { "gecko": { "id": "@clipboard-inserter" } }, "permissions": [ "activeTab", "clipboardRead", "storage", "file:\/\/*\/*" ], "browser_action": { "browser_style": true, "default_icon": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "64": "icon\/icon64.png" }, "default_title": "Toggle clipboard inserter" }, "background": { "page": "bg\/index.html" }, "options_ui": { "page": "options.html" } } |