filelist.ro helper
This addon is intended to improve the filelist.ro website ui
Co to jest filelist.ro helper?
filelist.ro helper to rozszerzenie Chrome opracowane przez Zmoky, a jego główną funkcją jest „This addon is intended to improve the filelist.ro website ui”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia filelist.ro helper
Pobierz pliki rozszerzeń filelist.ro helper 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
This is an extension that improves filelist browsing experience
Podstawowe informacje o rozszerzeniu
Nazwa | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
Oficjalny URL | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
Opis | This addon is intended to improve the filelist.ro website ui |
Rozmiar pliku | 788 KB |
Liczba instalacji | 23 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2020-09-17 |
Data Publikacji | 2019-02-02 |
Ocena | 4.75/5 Łącznie 4 Oceny |
Deweloper | Zmoky |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.freeprivacypolicy.com/our-privacy-policy |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "filelist.ro helper", "version": "1.4", "description": "This addon is intended to improve the filelist.ro website ui", "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/logo-filelist-16.png", "32": "images\/logo-filelist-32.png", "48": "images\/logo-filelist-48.png", "128": "images\/logo-filelist-128.png" } }, "icons": { "16": "images\/logo-filelist-16.png", "32": "images\/logo-filelist-32.png", "48": "images\/logo-filelist-48.png", "128": "images\/logo-filelist-128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/filelist.io\/browse.php*", "https:\/\/filelist.io\/internal.php*" ], "css": [], "js": [ "jquery.js", "content.js" ] } ], "web_accessible_resources": [ "styles.css" ] } |