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...
拡張機能の基本情報
名前 | Netfilm Extension |
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 |
Eメール | [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:;" } } |