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."입니다.
확장 프로그램 스크린샷
PencilToggler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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 } |