PencilToggler

Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app.

PencilTogglerとは何ですか?

PencilTogglerはGrebus Philbinによって開発されたChromeの拡張機能で、その主な機能は「Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app.」です。

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

screenshot

PencilToggler拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Tired of mousing over to click that darn pencil button every time you need to switch between pencil and pen?

Do the New York Times Crossword puzzle in chrome WITHOUT having to take your fingers off of the keyboard, and don't let your speedier crossing friends defeat you during a relaxing, yet competitive coff'n'cross (coffee and crossword). Prove to your friends that they are just mere average geese, while you're a sexy, athletic, waterdancing Grebe!

To use:
1. Download this sick extension and install per usual.
2. Go to "chrome://extensions/shortcuts" and find the Pencil Toggler.
3. Where you see "Type a shortcut", type a niche shortcut. We recommend 'Ctrl + Space' to maintain consistency when swapping laptops with your fellow grebe.
4. Perfect that cross before Rex can post his daily complaint about the theme.                    

拡張機能の基本情報

名前 PencilToggler PencilToggler
ID nojljbcgonibbpgdiggjlmbodannoilm
公式URL https://chrome.google.com/webstore/detail/penciltoggler/nojljbcgonibbpgdiggjlmbodannoilm
説明 Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app.
ファイルサイズ 32.83 KB
インストール数 80
現在のバージョン 0.0.0.1
最終更新日 2020-01-27
公開日 2020-01-27
評価 3.00/5 合計 4 レビュー
開発者 Grebus Philbin
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PencilToggler",
    "version": "0.0.0.1",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "description": "Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/crosswords\/*"
            ],
            "js": [
                "autorun.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "toggle-pencil": {
            "suggested_key": {
                "default": "Ctrl+0",
                "mac": "Command+0"
            },
            "description": "Toggle pencil"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}