Permanent clipboard
Allows you to store and access multiple elements in clipboard
ما هو Permanent clipboard؟
Permanent clipboard هو إضافة Chrome تم تطويرها بواسطة https://bartosz.im/permanent-clipboard، والميزة الرئيسية لها هي "Allows you to store and access multiple elements in clipboard".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Permanent clipboard
قم بتنزيل ملفات الامتداد Permanent clipboard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/przybylski/permanent-clipboard/issues |
عنوان صفحة سياسة الخصوصية | 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'" } |