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 |
官方網址 | 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\/*" ] } |