filelist.ro helper
This addon is intended to improve the filelist.ro website ui
Qu'est-ce que filelist.ro helper ?
filelist.ro helper est une extension Chrome développée par Zmoky, et sa fonction principale est "This addon is intended to improve the filelist.ro website ui".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension filelist.ro helper
Téléchargez les fichiers d'extension filelist.ro helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This is an extension that improves filelist browsing experience
Informations de Base sur l'Extension
Nom | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
URL Officiel | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
Description | This addon is intended to improve the filelist.ro website ui |
Taille du Fichier | 788 KB |
Nombre d'Installations | 23 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2020-09-17 |
Date de Publication | 2019-02-02 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | Zmoky |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.freeprivacypolicy.com/our-privacy-policy |
Langues Prises en Charge | 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" ] } |