Ikbenfrits
Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.
ما هو Ikbenfrits؟
Ikbenfrits هو إضافة Chrome تم تطويرها بواسطة ikbenfrits، والميزة الرئيسية لها هي "Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ikbenfrits
قم بتنزيل ملفات الامتداد Ikbenfrits بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving Met deze extensie kun je bij verschillende instanties je persoonlijke documenten downloaden. De informatie uit deze documenten wordt daarna gebundeld in één overzichtelijk document. Op een privacyvriendelijke manier natuurlijk.
معلومات أساسية عن التمديد
الاسم | Ikbenfrits |
ID | mejooooabdglcdpcigfeaboccnjkfnda |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/ikbenfrits/mejooooabdglcdpcigfeaboccnjkfnda |
الوصف | Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving. |
حجم الملف | 91.39 KB |
عدد التثبيتات | 142 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-09-16 |
تاريخ النشر | 2021-09-13 |
المطور | ikbenfrits |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.ikbenfrits.nl/welkom/ |
عنوان صفحة سياسة الخصوصية | https://www.ikbenfrits.nl/privacy |
اللغات المدعومة | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ikbenfrits", "description": "Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.", "version": "1.0.0", "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/www.ikbenfrits.nl", "icons": { "32": "resources\/logo32X32.png", "48": "resources\/logo48X48.png", "128": "resources\/logo128X128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.aqopi.com\/*", "https:\/\/*.iwize.nl\/*", "https:\/\/*.overheid.nl\/*", "https:\/\/*.mijnpensioenoverzicht.nl\/*", "https:\/\/*.uwv.nl\/*", "https:\/\/*.belastingdienst.nl\/*", "https:\/\/*.duo.nl\/*", "https:\/\/*.digid.nl\/*" ], "run_at": "document_start", "js": [ "content\/content.js", "content\/actions.js", "content\/crypto.js", "content\/templateMatching.js", "content\/fetchBlob.js", "content\/downloadPdfByClick.js" ] }, { "matches": [ "https:\/\/mijn.duo.nl\/*" ], "run_at": "document_start", "js": [ "content\/fetchJsonWithAuthHeader.js" ] } ], "permissions": [ "cookies", "webRequest", "https:\/\/*.aqopi.com\/*", "https:\/\/*.iwize.nl\/*", "https:\/\/*.overheid.nl\/*", "https:\/\/*.mijnpensioenoverzicht.nl\/*", "https:\/\/*.uwv.nl\/*", "https:\/\/*.belastingdienst.nl\/*", "https:\/\/*.duo.nl\/*", "https:\/\/*.digid.nl\/*" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "resources\/logo32X32.png", "default_title": "Ikbenfrits.nl" }, "web_accessible_resources": [ "resources\/logo80X80.png" ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "https:\/\/*.iwize.nl\/*" ] } } |