I'd like to confirm.
Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.
ما هو I'd like to confirm.؟
I'd like to confirm. هو إضافة Chrome تم تطويرها بواسطة Maximilian Hils، والميزة الرئيسية لها هي "Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة I'd like to confirm.
قم بتنزيل ملفات الامتداد I'd like to confirm. بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Displays a confirm dialog if you're clicking on a Facebook Like Button. This is useful against unintentional Likes (ClickJacking / LikeJacking). In addition, this extension emulates a Like Button Press and makes the current page believe that you liked it (although you didn't). Demo Like-Button: http://developers.facebook.com/docs/reference/plugins/like/ Feedback is welcome!
معلومات أساسية عن التمديد
الاسم | |
ID | ebkkkinjbhcjdpgimeekpehonkllnhho |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/id-like-to-confirm/ebkkkinjbhcjdpgimeekpehonkllnhho |
الوصف | Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking. |
حجم الملف | 46.52 KB |
عدد التثبيتات | 644 |
النسخة الحالية | 1.0.3 |
آخر تحديث | 2014-09-12 |
تاريخ النشر | 2014-09-12 |
تقييم | 4.14/5 مجموع تقييمات 37 |
المطور | Maximilian Hils |
نوع الدفع | free |
موقع الإضافة | http://www.maximilianhils.com |
عنوان صفحة المساعدة | https://github.com/mhils/Likeme |
اللغات المدعومة | de,en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "manifest_version": 2, "version": "1.0.3", "default_locale": "en", "icons": { "16": "like-16.png", "48": "like-48.png", "128": "like-128.png", "256": "like-256.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/plugins\/*", "*:\/\/*.facebook.com\/widgets\/*" ], "js": [ "likeconfirm.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "*:\/\/*.facebook.com\/plugins\/*", "*:\/\/*.facebook.com\/widgets\/*" ] } |