LinkDownloader
Grouping all website pages links to one place!
ما هو LinkDownloader؟
LinkDownloader هو إضافة Chrome تم تطويرها بواسطة sharonbaum.mrkt، والميزة الرئيسية لها هي "Grouping all website pages links to one place!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LinkDownloader
قم بتنزيل ملفات الامتداد LinkDownloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension Grouping all user's website pages links to one place.
معلومات أساسية عن التمديد
الاسم | |
ID | bfllnidboadchhjlofjkanmgdmefljfk |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/linkdownloader/bfllnidboadchhjlofjkanmgdmefljfk |
الوصف | Grouping all website pages links to one place! |
حجم الملف | 13.83 KB |
عدد التثبيتات | 4,220 |
النسخة الحالية | 1 |
آخر تحديث | 2022-12-07 |
تاريخ النشر | 2022-12-07 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | sharonbaum.mrkt |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://home.aethemselveb.info/ |
عنوان صفحة المساعدة | https://home.aethemselveb.info/contact.html |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "LinkDownloader", "default_popup": "popup.html" }, "description": "Grouping all website pages links to one place!", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "LinkDownloader", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |