FurAffinity Extender
FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.
ما هو FurAffinity Extender؟
FurAffinity Extender هو إضافة Chrome تم تطويرها بواسطة Kauko، والميزة الرئيسية لها هي "FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FurAffinity Extender
قم بتنزيل ملفات الامتداد FurAffinity Extender بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding features such as saving files, Open Gallery in Tabs to open all images in a gallery at once, keyboard shortcuts, and more.
معلومات أساسية عن التمديد
الاسم | FurAffinity Extender |
ID | fhmcgphbcegegmikbgihhobgphecbkon |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/furaffinity-extender/fhmcgphbcegegmikbgihhobgphecbkon |
الوصف | FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features. |
حجم الملف | 75.65 KB |
عدد التثبيتات | 1,494 |
النسخة الحالية | 1.2.4 |
آخر تحديث | 2023-12-06 |
تاريخ النشر | 2020-06-12 |
تقييم | 3.14/5 مجموع تقييمات 21 |
المطور | Kauko |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://cheeplusplus.github.io/faextender-chrome/ |
عنوان صفحة المساعدة | https://github.com/cheeplusplus/faextender-chrome/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FurAffinity Extender", "manifest_version": 3, "description": "FurAffinity Extender adds to the your browsing experience of FurAffinity.net by adding additional client-side features.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.furaffinity.net\/*" ], "js": [ "page_inject.bundle.js", "vendor.bundle.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "tabdelay.html" ], "matches": [ "*:\/\/*.furaffinity.net\/*" ] } ], "homepage_url": "https:\/\/cheeplusplus.github.io\/faextender-chrome\/", "options_ui": { "page": "options.html" }, "permissions": [ "storage", "downloads" ], "version": "1.2.4", "minimum_chrome_version": "88", "background": { "service_worker": "background.bundle.js", "type": "module" } } |