I'd like to confirm.
Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.
What is I'd like to confirm.?
I'd like to confirm. is a Chrome extension developed by Maximilian Hils, and its main feature is "Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking.".
Extension Screenshots
Download I'd like to confirm. Extension CRX File
Download I'd like to confirm. extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | ebkkkinjbhcjdpgimeekpehonkllnhho |
Official URL | https://chrome.google.com/webstore/detail/id-like-to-confirm/ebkkkinjbhcjdpgimeekpehonkllnhho |
Description | Adds a confirm dialog to every Facebook Like Button in order to prevent ClickJacking. |
File Size | 46.52 KB |
Installation Count | 644 |
Current Version | 1.0.3 |
Last Updated | 2014-09-12 |
Publish Date | 2014-09-12 |
Rating | 4.14/5 Total 37 Ratings |
Developer | Maximilian Hils |
Payment Type | free |
Extension Website | http://www.maximilianhils.com |
Help Page URL | https://github.com/mhils/Likeme |
Supported Languages | 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\/*" ] } |