target="_blank"-toggler

Toggle target="_blank" on key-press

target="_blank"-togglerとは何ですか?

target="_blank"-togglerはaugnustinによって開発されたChromeの拡張機能で、その主な機能は「Toggle target="_blank" on key-press」です。

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

screenshot

target="_blank"-toggler拡張機能のCRXファイルをダウンロード

target="_blank"-toggler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is a pain not to being aware whether clicking on a link will open a new tab or not. To avoid this issue, this extension brings a different cursor on new tab link openers.

Besides it is possible to switch between opening new tab or not by pressing the `Ctrl`/`Cmd` + `Shift` keys.

More details on the complete blog post:
https://augustin-riedinger.fr/en/resources/thoughts-on-target-blank

And source code is here: https://github.com/augnustin/target_blank-toggler                    

拡張機能の基本情報

名前 target= target="_blank"-toggler
ID emjjmkkcdllendgbldliiphlbpnomnjk
公式URL https://chromewebstore.google.com/detail/targetblank-toggler/emjjmkkcdllendgbldliiphlbpnomnjk
説明 Toggle target="_blank" on key-press
ファイルサイズ 255 KB
インストール数 283
現在のバージョン 0.1.0
最終更新日 2017-11-14
公開日 2017-11-14
評価 5.00/5 合計 1 レビュー
開発者 augnustin
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/augnustin/target_blank-toggler
ヘルプページのURL https://github.com/augnustin/target_blank-toggler/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "target=\"_blank\"-toggler",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Toggle target=\"_blank\" on key-press",
    "homepage_url": "https:\/\/augustin-riedinger.fr\/en\/resources\/thoughts-on-target-blank",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "src\/style.css",
        "images\/cursor.png",
        "images\/cursor-ext.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "src\/style.css"
            ],
            "js": [
                "src\/toggler.js"
            ]
        }
    ]
}