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