filelist.ro helper
This addon is intended to improve the filelist.ro website ui
Co je filelist.ro helper?
filelist.ro helper je rozšíření Chrome vyvinuté Zmoky, a jeho hlavní funkcí je „This addon is intended to improve the filelist.ro website ui“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření filelist.ro helper
Stáhněte si soubory rozšíření filelist.ro helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is an extension that improves filelist browsing experience
Základní Informace o Rozšíření
Název | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
Oficiální URL | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
Popis | This addon is intended to improve the filelist.ro website ui |
Velikost souboru | 788 KB |
Počet instalací | 23 |
Aktuální Verze | 1.4 |
Poslední Aktualizace | 2020-09-17 |
Datum Vydání | 2019-02-02 |
Hodnocení | 4.75/5 Celkem 4 Hodnocení |
Vývojář | Zmoky |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://www.freeprivacypolicy.com/our-privacy-policy |
Podporované Jazyky | 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" ] } |