Overratd

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

Overratd क्या है?

Overratd garretlowe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome Extension for Letterboxd which adds rating histograms to public lists based on the author's rating"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Overratd एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}