Ikbenfrits
Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.
O que é Ikbenfrits?
Ikbenfrits é uma extensão do Chrome desenvolvida por ikbenfrits, e sua principal característica é "Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Ikbenfrits
Baixe arquivos de extensão Ikbenfrits no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Ikbenfrits |
ID | mejooooabdglcdpcigfeaboccnjkfnda |
URL Oficial | https://chromewebstore.google.com/detail/ikbenfrits/mejooooabdglcdpcigfeaboccnjkfnda |
Descrição | Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving. |
Tamanho do Arquivo | 91.39 KB |
Contagem de Instalações | 142 |
Versão Atual | 1.0.0 |
Última Atualização | 2021-09-16 |
Data de Publicação | 2021-09-13 |
Desenvolvedor | ikbenfrits |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.ikbenfrits.nl/welkom/ |
URL da Página de Política de Privacidade | https://www.ikbenfrits.nl/privacy |
Idiomas Suportados | 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\/*" ] } } |