filelist.ro helper
This addon is intended to improve the filelist.ro website ui
filelist.ro helperคืออะไร?
filelist.ro helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zmoky และคุณลักษณะหลักของมันคือ "This addon is intended to improve the filelist.ro website ui"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย filelist.ro helper
ดาวน์โหลดไฟล์ส่วนขยาย filelist.ro helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension that improves filelist browsing experience
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | filelist.ro helper |
ID | cdpegimclchefkhgkgcfelcbnhionkgp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp |
คำอธิบาย | This addon is intended to improve the filelist.ro website ui |
ขนาดไฟล์ | 788 KB |
จำนวนการติดตั้ง | 23 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2020-09-17 |
วันที่เผยแพร่ | 2019-02-02 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Zmoky |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.freeprivacypolicy.com/our-privacy-policy |
ภาษาที่รองรับ | 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" ] } |