Copy & Paste
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
什麼是Copy & Paste?
Copy & Paste是由gal.bogdan2015開發的Chrome擴展程式,該擴展的主要功能是“The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…”。
擴展截圖
下載Copy & Paste擴展crx文件
下載Copy & Paste擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them. Save the data you need with one click by simply copying it. Just use Ctrl+c.
擴展基本資訊
名稱 | Copy & Paste |
ID | oijiikmgkljldpbpddpmhiblpgkciobn |
官方網址 | https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn |
簡介 | The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have… |
檔案大小 | 81.47 KB |
安裝次數 | 889 |
目前版本 | 1.0 |
更新時間 | 2020-06-29 |
上架時間 | 2020-06-28 |
開發者 | gal.bogdan2015 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy & Paste", "version": "1.0", "icons": { "32": "img\/logo32.png", "48": "img\/logo48.png" }, "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/fonts.googleapis.com\/*", "storage" ], "background": { "scripts": [ "js\/libs\/jquery-3.2.1.min.js", "js\/libs\/safeResponse.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ], "browser_action": { "default_title": "Copy & Paste", "default_icon": "img\/logo64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |