Letterboxd Shortcuts
Keyboard shortcuts for Letterboxd.
Letterboxd Shortcuts란 무엇입니까?
Letterboxd Shortcuts은(는) Alan Dours에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keyboard shortcuts for Letterboxd."입니다.
확장 프로그램 스크린샷
Letterboxd Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Log/review Shortcuts for logging/reviewing films. N — Log new film L — Like/unlike film Enter — Submit review/diary entry Esc — Close modal window Selecting films Shortcuts that work on any page that has films. S — Select/deselect films ↑ ↓ → ← — Move selection Home — Move selection to the first film of the page End — Move selection to the last film of the page Enter — Go to the selected film page Films Shortcuts that only work on film pages or when a film is selected. W — Watch/unwatch film L — Like/unlike film A — Add/remove from the watchlist X — Remove the selected film from the watchlist (only when a film is selected) R — Review/log film I — Add film to a list 0-9 — Rate film: Numbers 1 to 9 equals ½ ★ each / 0 equals ★★★★★ Z — Remove rating Diary Shortcuts that only work when viewing your own diary page. E — Edit the selected review/diary entry D or Delete — Delete the selected review/diary entry / Confirm deleting review/diary entry
확장 프로그램 기본 정보
이름 | |
ID | lpopedcebfdkhelkoiakllmilggjcope |
공식 URL | https://chrome.google.com/webstore/detail/letterboxd-shortcuts/lpopedcebfdkhelkoiakllmilggjcope |
설명 | Keyboard shortcuts for Letterboxd. |
파일 크기 | 14.6 KB |
설치 횟수 | 89 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2020-07-28 |
출시 날짜 | 2019-08-04 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Alan Dours |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/alandours/letterboxd-shortcuts |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Letterboxd Shortcuts", "description": "Keyboard shortcuts for Letterboxd.", "version": "1.1.2", "permissions": [ "activeTab" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.letterboxd.com\/*" ], "include_globs": [ "*letterboxd.com\/*\/films\/diary*", "*letterboxd.com\/*\/tag\/*\/diary*" ], "js": [ "js\/shortcutsMain.js", "js\/shortcutsDiary.js" ], "css": [ "css\/shortcuts.css" ] }, { "matches": [ "*:\/\/*.letterboxd.com\/*" ], "include_globs": [ "*letterboxd.com\/film\/*", "*letterboxd.com\/*\/film\/*" ], "js": [ "js\/shortcutsMain.js", "js\/shortcutsFilm.js" ] }, { "matches": [ "*:\/\/*.letterboxd.com\/*" ], "exclude_globs": [ "*letterboxd.com\/film\/*", "*letterboxd.com\/*\/film\/*", "*letterboxd.com\/*\/films\/diary*", "*letterboxd.com\/*\/tag\/*\/diary*" ], "js": [ "js\/shortcutsMain.js", "js\/shortcutsFilmGrid.js" ], "css": [ "css\/shortcuts.css" ] } ] } |