Overratd

A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating

什麼是Overratd?

Overratd是由garretlowe開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating”。

擴展截圖

screenshot

下載Overratd擴展crx文件

下載Overratd擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Overratd adds histograms to Letterboxd lists which display the list owner's ratings for movies in the list.

Currently, the extension is limited to 100 movies at a time. This is because it reads the list of movies from the current page and Letterboxd can only display up to 100 movies per list page.

Additionally, the tooltips which display when hovering over bars do not currently work as you would expect them to based on the profile histograms.

Overratd is licensed under GPL-3.0 and is fully open-source: https://github.com/garretlowe/overratd                    

擴展基本資訊

名稱 Overratd Overratd
ID lllkjhpcabokchmdinbmhgmnnkgoehhf
官方網址 https://chromewebstore.google.com/detail/overratd/lllkjhpcabokchmdinbmhgmnnkgoehhf
簡介 A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating
檔案大小 12.16 KB
安裝次數 56
目前版本 1.0
更新時間 2022-08-27
上架時間 2022-08-26
開發者 garretlowe
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/garretlowe/overratd
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Overratd",
    "author": "Garret Lowe",
    "description": "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/letterboxd.com\/*\/list\/*\/"
            ],
            "js": [
                "overratd.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/overratd16.png",
        "32": "\/images\/overratd32.png",
        "48": "\/images\/overratd48.png",
        "128": "\/images\/overratd128.png"
    }
}