Ikbenfrits
Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.
Ikbenfritsとは何ですか?
Ikbenfritsはikbenfritsによって開発されたChromeの拡張機能で、その主な機能は「Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.」です。
拡張機能のスクリーンショット
Ikbenfrits拡張機能のCRXファイルをダウンロード
Ikbenfrits拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.ikbenfrits.nl/welkom/ |
プライバシーポリシーページのURL | 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\/*" ] } } |