Netfilm Extension
An extension that allow you to use Netfilm
什么是Netfilm Extension?
Netfilm Extension是由lamhoang1256开发的Chrome扩展程序,该扩展的主要功能是“An extension that allow you to use Netfilm”。
扩展截图
下载Netfilm Extension扩展crx文件
下载Netfilm Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Netfilm Extension is a Chrome extension designed to enhance the user experience on our website (netfilm.app)
* With Netfilm Extension , you can enjoy streaming directly from Chrome with:
- Faster loading times, improved streaming quality
- Access more movie and anime sources
- Save ~ 35% of your network data
- And many other benefits... 扩展基本信息
| 名称 | |
| ID | mffeniekpbkefaecchlgocpfmnbmfmgl |
| 官方URL | https://chromewebstore.google.com/detail/netfilm-extension/mffeniekpbkefaecchlgocpfmnbmfmgl |
| 简介 | An extension that allow you to use Netfilm |
| 文件大小 | 96.9 KB |
| 安装次数 | 6,000 |
| 当前版本 | 0.1.2 |
| 更新时间 | 2024-01-15 |
| 上架时间 | 2023-09-08 |
| 评分 | 4.00/5 共7次评分 |
| 开发者 | lamhoang1256 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://netfilm.app |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Netfilm Extension",
"version": "0.1.2",
"description": "An extension that allow you to use Netfilm",
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"icons": {
"16": "icon16.png",
"19": "icon19.png",
"32": "icon32.png",
"38": "icon38.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_title": "Netfilm Extension",
"default_icon": "icon128.png"
},
"action": [],
"content_scripts": [
{
"matches": [
"https:\/\/netfilm.app\/*",
"http:\/\/localhost:3002\/*",
"https:\/\/netfilm-extension-apply.vercel.app\/*"
],
"js": [
"src\/pages\/content\/index.js"
],
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": [
"https:\/\/netfilm.app\/*",
"http:\/\/localhost:3002\/*",
"https:\/\/netfilm-extension-apply.vercel.app\/*"
]
},
"devtools_page": "src\/pages\/devtools\/index.html",
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/css\/*.css",
"icon16.png",
"icon19.png",
"icon32.png",
"icon38.png",
"icon48.png",
"icon128.png"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "default-src 'self'; connect-src https:\/\/* ws:\/\/* data: blob: filesystem:;"
}
} | |