Letterboxd Expanded

A Chrome extension for customizing UI/UX on the website letterboxd.com

Letterboxd Expandedคืออะไร?

Letterboxd Expanded เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Letterboxd Expanded และคุณลักษณะหลักของมันคือ "A Chrome extension for customizing UI/UX on the website letterboxd.com"

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

screenshot
screenshot

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

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

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

                        This is a small Chrome extension for customizing user experience on https://letterboxd.com/. 

Currently there is only one UI/UX feature this extension adds. Specifically, it adds the ability to view a user's activity log for a specific film by accessing a new menu option from the film poster menu. This new option is highlighted in a red circle in this extension's screenshots. It is always added as the last option and is labeled "User activity".

This feature is only available when you are browsing letterboxd.com within sub-areas of a user's profile; Profile, Activity, Films, Diary, Reviews, Watchlist, Lists, Likes, Tags, Network, and Stats. Specifically that is URLs of the format https://letterboxd.com//*.

An example location where the feature is available, using my own profile, is: 

https://letterboxd.com/QuietVermonter/

From my profile page, users with the extension can open any film poster's menu (''...") for my favorites, recent activity, pinned reviews, recent reviews, and popular reviews. Clicking "User activity" from the film menu will bring you to my activity log for that film. One of my favorite films, Contact (1997), for example will bring you to the following URL when you choose "User Activity" from the film poster's menu:

https://letterboxd.com/QuietVermonter/film/contact/activity/

This page shows all the interactions I've had with the film on the site.

I'm planning to implement a number of other features in the future. This is just a simple starting point for the extension.                    

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

ชื่อ Letterboxd Expanded Letterboxd Expanded
ID mhpanaehoapalcbjenhdgcdfaeodmcmg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/letterboxd-expanded/mhpanaehoapalcbjenhdgcdfaeodmcmg
คำอธิบาย A Chrome extension for customizing UI/UX on the website letterboxd.com
ขนาดไฟล์ 2.05 MB
จำนวนการติดตั้ง 106
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-03-07
วันที่เผยแพร่ 2023-03-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Letterboxd Expanded
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/theredsox/letterboxd
URL หน้าช่วยเหลือ https://github.com/theredsox/letterboxd/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Letterboxd Expanded",
    "description": "A Chrome extension for customizing UI\/UX on the website letterboxd.com",
    "version": "1.0",
    "action": {
        "default_popup": "popup\/extension_popup.html",
        "default_icon": "images\/icon_128.png"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "64": "images\/icon_64.png",
        "128": "images\/icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/core.js"
            ],
            "matches": [
                "https:\/\/letterboxd.com\/*"
            ]
        }
    ],
    "permissions": []
}