Letterboxd Shortcuts

Keyboard shortcuts for Letterboxd.

Letterboxd Shortcutsคืออะไร?

Letterboxd Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alan Dours และคุณลักษณะหลักของมันคือ "Keyboard shortcuts for Letterboxd."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Letterboxd Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Letterboxd Shortcuts Letterboxd Shortcuts
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"
            ]
        }
    ]
}