Paste Enforcer
It will type the contents of your Clipboard so you can paste text in websites that block it
ما هو Paste Enforcer؟
Paste Enforcer هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "It will type the contents of your Clipboard so you can paste text in websites that block it".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Paste Enforcer
قم بتنزيل ملفات الامتداد Paste Enforcer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
It will type the contents of your Clipboard so you can paste text in websites that block it. Just right click the field and select: "Force paste!"
معلومات أساسية عن التمديد
الاسم | Paste Enforcer |
ID | klioagabdlbmbhomedhkfkjggelmfclg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/paste-enforcer/klioagabdlbmbhomedhkfkjggelmfclg |
الوصف | It will type the contents of your Clipboard so you can paste text in websites that block it |
حجم الملف | 64.39 KB |
عدد التثبيتات | 1,677 |
النسخة الحالية | 1.1 |
آخر تحديث | 2018-12-12 |
تاريخ النشر | 2018-12-06 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Unknown |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Paste Enforcer", "version": "1.1", "description": "It will type the contents of your Clipboard so you can paste text in websites that block it", "permissions": [ "contextMenus", "activeTab", "clipboardRead" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "vendor\/jquery.js", "vendor\/bililiteRange.js", "vendor\/jquery.sendkeys.js", "content-script.js" ], "all_frames": true } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |