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 là gì?
Clipboard Inserter là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "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".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Clipboard Inserter
Tải xuống các tệp mở rộng Clipboard Inserter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Clipboard Inserter |
ID | deahejllghicakhplliloeheabddjajm |
URL Chính Thức | https://chromewebstore.google.com/detail/clipboard-inserter/deahejllghicakhplliloeheabddjajm |
Mô tả | 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 |
Kích Thước Tệp | 10.28 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.3.2 |
Cập Nhật Lần Cuối | 2018-12-06 |
Ngày Phát Hành | 2018-12-06 |
Đánh Giá | 4.50/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kmltml/clipboard-inserter |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |