Allow Clipboard
Allows clipboard read and write without user interaction.
ما هو Allow Clipboard؟
Allow Clipboard هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Allows clipboard read and write without user interaction.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Allow Clipboard
قم بتنزيل ملفات الامتداد Allow Clipboard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chrome Extension that allows clipboard read and write without user interaction. Normally Chrome does not allow JavaScript access to the Clipboard without a user interaction (e.g. click). AllowClipboard extension can be useful in situations where clipboard access is needed out of band, such as during an asynchronous method call from the server.
معلومات أساسية عن التمديد
الاسم | Allow Clipboard |
ID | bgafccceonganlcmcojjacanoadnhmac |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/allow-clipboard/bgafccceonganlcmcojjacanoadnhmac |
الوصف | Allows clipboard read and write without user interaction. |
حجم الملف | 28.08 KB |
عدد التثبيتات | 3,947 |
النسخة الحالية | 1.0.3 |
آخر تحديث | 2017-05-25 |
تاريخ النشر | 2017-05-25 |
تقييم | 2.00/5 مجموع تقييمات 8 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/itsmikeeng/AllowClipboard |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Allow Clipboard", "version": "1.0.3", "description": "Allows clipboard read and write without user interaction.", "icons": { "128": "icon_128.png" }, "background": { "persistent": false, "scripts": [ "background.js", "common.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "clipboardRead", "clipboardWrite", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "allowClipboardContentScript.js", "common.js" ] } ], "web_accessible_resources": [ "allowClipboardClient.js", "common.js" ], "options_page": "options.html" } |