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是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" } } |