Letterboxd Services
Letterboxd extension that provides you torrents for movies.
什么是Letterboxd Services?
Letterboxd Services是由netanel开发的Chrome扩展程序,该扩展的主要功能是“Letterboxd extension that provides you torrents for movies.”。
扩展截图
下载Letterboxd Services扩展crx文件
下载Letterboxd Services扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
adds shortcuts to watch movies from letterboxd.
This project is open source:
https://github.com/pypp/letterboxd-services 扩展基本信息
| 名称 | |
| ID | bapjnacilodfnmciacfljidhhnbbippn |
| 官方URL | https://chromewebstore.google.com/detail/letterboxd-services/bapjnacilodfnmciacfljidhhnbbippn |
| 简介 | Letterboxd extension that provides you torrents for movies. |
| 文件大小 | 11.38 KB |
| 安装次数 | 50 |
| 当前版本 | 0.6 |
| 更新时间 | 2024-02-07 |
| 上架时间 | 2023-08-13 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | netanel |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/1netanel/letterboxd-services |
| 帮助页面URL | https://github.com/1netanel/letterboxd-services/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Letterboxd Services",
"description": "Letterboxd extension that provides you torrents for movies.",
"version": "0.6",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules_1.json"
}
]
},
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestFeedback"
],
"host_permissions": [
"https:\/\/letterboxd.com\/film\/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/letterboxd.com\/film\/*"
],
"js": [
"src\/content.js",
"src\/services.js"
]
}
]
} | |