Netfilm Extension
An extension that allow you to use Netfilm
Co to jest Netfilm Extension?
Netfilm Extension to rozszerzenie Chrome opracowane przez lamhoang1256, a jego główną funkcją jest „An extension that allow you to use Netfilm”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Netfilm Extension
Pobierz pliki rozszerzeń Netfilm Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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...
Podstawowe informacje o rozszerzeniu
Nazwa | Netfilm Extension |
ID | mffeniekpbkefaecchlgocpfmnbmfmgl |
Oficjalny URL | https://chromewebstore.google.com/detail/netfilm-extension/mffeniekpbkefaecchlgocpfmnbmfmgl |
Opis | An extension that allow you to use Netfilm |
Rozmiar pliku | 96.9 KB |
Liczba instalacji | 6,000 |
Aktualna Wersja | 0.1.2 |
Ostatnia Aktualizacja | 2024-01-15 |
Data Publikacji | 2023-09-08 |
Ocena | 4.00/5 Łącznie 7 Oceny |
Deweloper | lamhoang1256 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://netfilm.app |
Obsługiwane Języki | 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:;" } } |