I'd like to confirm.
Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.
I'd like to confirm. là gì?
I'd like to confirm. là một tiện ích mở rộng Chrome được phát triển bởi Maximilian Hils, và tính năng chính của nó là "Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng I'd like to confirm.
Tải xuống các tệp mở rộng I'd like to confirm. dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ebkkkinjbhcjdpgimeekpehonkllnhho |
URL Chính Thức | https://chrome.google.com/webstore/detail/id-like-to-confirm/ebkkkinjbhcjdpgimeekpehonkllnhho |
Mô tả | Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking. |
Kích Thước Tệp | 46.52 KB |
Số Lần Cài Đặt | 644 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2014-09-12 |
Ngày Phát Hành | 2014-09-12 |
Đánh Giá | 4.14/5 Tổng số 37 Đánh Giá |
Nhà Phát Triển | Maximilian Hils |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.maximilianhils.com |
URL Trang Trợ Giúp | https://github.com/mhils/Likeme |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |