Nationaal warmtefonds gegevens verzamelen
Verzamel op een privacyvriendelijke manier informatie van overheidsinstanties voor je Energiebespaarlening aanvraag
Что такое Nationaal warmtefonds gegevens verzamelen?
Nationaal warmtefonds gegevens verzamelen - это расширение Chrome, разработанное Nationaal Warmtefonds, и его основная функция - "Verzamel op een privacyvriendelijke manier informatie van overheidsinstanties voor je Energiebespaarlening aanvraag".
Снимки экрана расширения
Скачать файл CRX расширения Nationaal warmtefonds gegevens verzamelen
Скачайте файлы расширений Nationaal warmtefonds gegevens verzamelen в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Met deze extensie kun je bij verschillende instanties persoonlijke informatie downloaden. Deze informatie wordt daarna gebundeld in een overzichtelijk document.
Основная информация о расширении
Название | Nationaal warmtefonds gegevens verzamelen |
ID | epobnakecdofghohighianlbhijpgfmc |
Официальный URL | https://chromewebstore.google.com/detail/nationaal-warmtefonds-geg/epobnakecdofghohighianlbhijpgfmc |
Описание | Verzamel op een privacyvriendelijke manier informatie van overheidsinstanties voor je Energiebespaarlening aanvraag |
Размер файла | 26.45 KB |
Количество установок | 1,446 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2023-08-02 |
Дата публикации | 2021-09-15 |
Рейтинг | 1.60/5 Всего 5 оценок |
Разработчик | Nationaal Warmtefonds |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.energiebespaarlening.nl/ |
URL страницы политики конфиденциальности | https://www.energiebespaarlening.nl/privacy |
Поддерживаемые языки | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Nationaal warmtefonds gegevens verzamelen", "description": "Verzamel op een privacyvriendelijke manier informatie van overheidsinstanties voor je Energiebespaarlening aanvraag", "version": "1.0.3", "content_security_policy": "script-src 'self'; object-src 'self'", "homepage_url": "https:\/\/www.energiebespaarlening.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": "Nationaal warmtefonds" }, "web_accessible_resources": [ "resources\/logo80X80.png" ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "https:\/\/*.iwize.nl\/*" ] } } |