Permanent clipboard
Allows you to store and access multiple elements in clipboard
什么是Permanent clipboard?
Permanent clipboard是由https://bartosz.im/permanent-clipboard开发的Chrome扩展程序,该扩展的主要功能是“Allows you to store and access multiple elements in clipboard”。
扩展截图
下载Permanent clipboard扩展crx文件
下载Permanent clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
How many times you wanted to keep important, but hard to remember, information at your mouse click without leaving the browser? Now you can achieve it with Permanent clipboard. This extensions allows you to save browser clipboard element with friendly name at your fingertips. Now you can store things like phone number, answer templates for discussion forums or bank account numbers.
扩展基本信息
名称 | Permanent clipboard |
ID | hilkjcfodmbdgpadbpehimibheopoccb |
官方URL | https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb |
简介 | Allows you to store and access multiple elements in clipboard |
文件大小 | 1.23 MB |
安装次数 | 63,730 |
当前版本 | 2.5.5 |
更新时间 | 2021-10-19 |
上架时间 | 2020-05-12 |
评分 | 4.30/5 共209次评分 |
开发者 | https://bartosz.im/permanent-clipboard |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://github.com/przybylski/permanent-clipboard/issues |
隐私政策页面URL | https://permanent-clipboard.app/privacy |
支持的语言 | de,en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "constants.js", "analytics.js", "storage.js", "background.js" ] }, "browser_action": { "default_icon": { "38": "img\/icon-38.png", "19": "img\/icon-19.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "constants.js", "contentscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true } ], "default_locale": "en", "description": "__MSG_extensionDescription__", "icons": { "128": "img\/icon-128.png", "16": "img\/icon-16.png" }, "manifest_version": 2, "name": "__MSG_extensionName__", "options_page": "options.html", "permissions": [ "storage", "contextMenus", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ], "version": "2.5.5", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |