PencilToggler

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

PencilToggler क्या है?

PencilToggler Grebus Philbin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use Ctrl + Space to toggle the pencil in the New York Times Crossword desktop app."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PencilToggler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}