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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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" ] } |