Letterboxd Ratings Remover

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

什么是Letterboxd Ratings Remover?

Letterboxd Ratings Remover是由Goodbyte开发的Chrome扩展程序,该扩展的主要功能是“Removes ratings and reviews from Letterboxd, to help avoid spoilers and expectations.”。

扩展截图

screenshot

下载Letterboxd Ratings Remover扩展crx文件

下载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
}