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
官方網址 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
}