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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
도움말 페이지 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\/*" ] } |