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
电子邮箱 [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
}