Permanent clipboard
Allows you to store and access multiple elements in clipboard
Qu'est-ce que Permanent clipboard ?
Permanent clipboard est une extension Chrome développée par https://bartosz.im/permanent-clipboard, et sa fonction principale est "Allows you to store and access multiple elements in clipboard".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Permanent clipboard
Téléchargez les fichiers d'extension Permanent clipboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Permanent clipboard |
ID | hilkjcfodmbdgpadbpehimibheopoccb |
URL Officiel | https://chromewebstore.google.com/detail/permanent-clipboard/hilkjcfodmbdgpadbpehimibheopoccb |
Description | Allows you to store and access multiple elements in clipboard |
Taille du Fichier | 1.23 MB |
Nombre d'Installations | 63,730 |
Version Actuelle | 2.5.5 |
Dernière Mise à Jour | 2021-10-19 |
Date de Publication | 2020-05-12 |
Évaluation | 4.30/5 Total 209 Évaluations |
Développeur | https://bartosz.im/permanent-clipboard |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/przybylski/permanent-clipboard/issues |
URL de la Page de Politique de Confidentialité | https://permanent-clipboard.app/privacy |
Langues Prises en Charge | 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'" } |