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.是由Maximilian Hils开发的Chrome扩展程序,该扩展的主要功能是“Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.”。
扩展截图
下载I'd like to confirm.扩展crx文件
下载I'd like to confirm.扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
帮助页面URL | 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\/*" ] } |