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.」です。

拡張機能のスクリーンショット

screenshot

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!                    

拡張機能の基本情報

名前 I'd like to confirm. I'd like to confirm.
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\/*"
    ]
}