filelist.ro helper
This addon is intended to improve the filelist.ro website ui
filelist.ro helper là gì?
filelist.ro helper là một tiện ích mở rộng Chrome được phát triển bởi Zmoky, và tính năng chính của nó là "This addon is intended to improve the filelist.ro website ui".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng filelist.ro helper
Tải xuống các tệp mở rộng filelist.ro helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This is an extension that improves filelist browsing experience
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
URL Chính Thức | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
Mô tả | This addon is intended to improve the filelist.ro website ui |
Kích Thước Tệp | 788 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2020-09-17 |
Ngày Phát Hành | 2019-02-02 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Zmoky |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.freeprivacypolicy.com/our-privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |