Letterblockd
Block Letterboxd users that you don't want to see reviews from
什么是Letterblockd?
Letterblockd是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Block Letterboxd users that you don't want to see reviews from”。
扩展截图
下载Letterblockd扩展crx文件
下载Letterblockd扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you don't want to see content by some user on Letterboxd, then just add them to the list in the options. 扩展基本信息
| 名称 | |
| ID | dkjlmnilbamfppblfkhdmdlonfbodpkf |
| 官方URL | https://chromewebstore.google.com/detail/letterblockd/dkjlmnilbamfppblfkhdmdlonfbodpkf |
| 简介 | Block Letterboxd users that you don't want to see reviews from |
| 文件大小 | 19.3 KB |
| 安装次数 | 49 |
| 当前版本 | 0.0.0.1 |
| 更新时间 | 2020-05-25 |
| 上架时间 | 2020-05-25 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "0.0.0.1",
"short_name": "__MSG_appShortName__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"background": {
"scripts": [
"scripts\/background.js"
]
},
"options_ui": {
"page": "pages\/options.html",
"browser-style": false,
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"http:\/\/letterboxd.com\/*",
"https:\/\/letterboxd.com\/*"
],
"css": [
"styles\/contentscript.css"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |