Letterboxd Ratings Remover

Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.

ما هو Letterboxd Ratings Remover؟

Letterboxd Ratings Remover هو إضافة Chrome تم تطويرها بواسطة Goodbyte، والميزة الرئيسية لها هي "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Letterboxd Ratings Remover

قم بتنزيل ملفات الامتداد Letterboxd Ratings Remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Removes film ratings from view on Letterboxd, and hides reviews (unless clicked on). This extension helps keep movies from being spoiled and from influencing expectations.

Key features:
• Reviews for a film are only shown when the button "SHOW REVIEWS" is pressed
• Ratings for a film are hidden
• Ratings on the home page are removed                    

معلومات أساسية عن التمديد

الاسم Letterboxd Ratings Remover Letterboxd Ratings Remover
ID hjnkheioinkniboimdnmpcfcnblcmdka
عنوان URL الرسمي https://chromewebstore.google.com/detail/letterboxd-ratings-remove/hjnkheioinkniboimdnmpcfcnblcmdka
الوصف Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.
حجم الملف 32.86 KB
عدد التثبيتات 200
النسخة الحالية 1.1
آخر تحديث 2020-09-28
تاريخ النشر 2019-08-30
تقييم 4.57/5 مجموع تقييمات 7
المطور Goodbyte
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Letterboxd Ratings Remover",
    "version": "1.1",
    "description": "Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.",
    "permissions": [
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.letterboxd.com\/*"
            ],
            "css": [
                "myStyles.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}