PencilToggler

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

PencilTogglerคืออะไร?

PencilToggler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Grebus Philbin และคุณลักษณะหลักของมันคือ "Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PencilToggler

ดาวน์โหลดไฟล์ส่วนขยาย 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
}