Crossword Plus
Make better use of screen space while doing the New York Times crossword puzzle.
Crossword Plus란 무엇입니까?
Crossword Plus은(는) Crossword Plus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make better use of screen space while doing the New York Times crossword puzzle."입니다.
확장 프로그램 스크린샷
Crossword Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This simple Chrome extension makes better use of screen space while doing the New York Times crossword puzzle. Inspired by the layout of AcrossLite, you'll notice a more prominent and easier-to-read puzzle grid and reduced size of non-puzzle items (e.g. headers, banners, puzzle title, etc). Features: + Remove and collapse distracting banners including ads, options, and page headers + Give more space to the puzzle grid, allowing it to expand with your browser + Collapse puzzle details (e.g. title, date, and author) along with the puzzle toolbar (e.g. Settings, Rebus, Reset buttons) into a single line + Re-orient the Across and Down clue boxes to be stacked instead of side-by-side (configurable via the options menu)
확장 프로그램 기본 정보
이름 | Crossword Plus |
ID | nbmlmpbkkdpllkockidnniakjdjipcmd |
공식 URL | https://chromewebstore.google.com/detail/crossword-plus/nbmlmpbkkdpllkockidnniakjdjipcmd |
설명 | Make better use of screen space while doing the New York Times crossword puzzle. |
파일 크기 | 896 KB |
설치 횟수 | 192 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-06-21 |
출시 날짜 | 2021-02-18 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Crossword Plus |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crossword Plus", "description": "Make better use of screen space while doing the New York Times crossword puzzle.", "version": "1.0.1", "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "page": "bg\/background.html", "persistent": true }, "content_scripts": [ { "js": [ "js\/content.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/www.nytimes.com\/crosswords", "https:\/\/www.nytimes.com\/crosswords\/game\/*" ] } ], "options_page": "options.html", "options_ui": { "page": "options.html", "open_in_tab": false, "chrome_style": true }, "manifest_version": 2 } |