Copy Guard
Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…
ما هو Copy Guard؟
Copy Guard هو إضافة Chrome تم تطويرها بواسطة Ruud Schroën، والميزة الرئيسية لها هي "Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Copy Guard
قم بتنزيل ملفات الامتداد Copy Guard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if there are hidden elements in your text selection. If this is the case, a native notification will be triggered. معلومات أساسية عن التمديد
| الاسم | |
| ID | kobgknfkonpcnijbmjpepfonpnkeefij |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/copy-guard/kobgknfkonpcnijbmjpepfonpnkeefij |
| الوصف | Whenever the copy event is fired, this browser extension will check if the data in your clipboard was altered by Javascript, or if… |
| حجم الملف | 97.56 KB |
| عدد التثبيتات | 58 |
| النسخة الحالية | 2.0.0 |
| آخر تحديث | 2024-02-24 |
| تاريخ النشر | 2020-12-13 |
| تقييم | 5.00/5 مجموع تقييمات 3 |
| المطور | Ruud Schroën |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/roedesh/copyguard |
| عنوان صفحة المساعدة | https://github.com/roedesh/copyguard/issues |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"permissions": [
"notifications",
"storage"
],
"background": {
"service_worker": "src\/background\/index.js"
},
"options_ui": {
"page": "src\/options\/index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"js": [
"src\/contentScript\/index.js"
]
}
],
"minimum_chrome_version": "88",
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"96": "assets\/icon96.png",
"128": "assets\/icon128.png"
},
"name": "Copy Guard",
"version": "2.0.0",
"manifest_version": 3
} | |