filelist.ro helper
This addon is intended to improve the filelist.ro website ui
What is filelist.ro helper?
filelist.ro helper is a Chrome extension developed by Zmoky, and its main feature is "This addon is intended to improve the filelist.ro website ui".
Extension Screenshots
Download filelist.ro helper Extension CRX File
Download filelist.ro helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is an extension that improves filelist browsing experience
Extension Basic Information
Name | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
Official URL | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
Description | This addon is intended to improve the filelist.ro website ui |
File Size | 788 KB |
Installation Count | 23 |
Current Version | 1.4 |
Last Updated | 2020-09-17 |
Publish Date | 2019-02-02 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Zmoky |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.freeprivacypolicy.com/our-privacy-policy |
Supported Languages | 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" ] } |