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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
}