Ikbenfrits

Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.

Co to jest Ikbenfrits?

Ikbenfrits to rozszerzenie Chrome opracowane przez ikbenfrits, a jego główną funkcją jest „Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Ikbenfrits

Pobierz pliki rozszerzeń Ikbenfrits w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Ikbenfrits Ikbenfrits
ID mejooooabdglcdpcigfeaboccnjkfnda
Oficjalny URL https://chromewebstore.google.com/detail/ikbenfrits/mejooooabdglcdpcigfeaboccnjkfnda
Opis Verzamel op een privacyvriendelijke manier documenten in je persoonlijke webomgeving.
Rozmiar pliku 91.39 KB
Liczba instalacji 142
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-09-16
Data Publikacji 2021-09-13
Deweloper ikbenfrits
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.ikbenfrits.nl/welkom/
Adres URL Strony Polityki Prywatności https://www.ikbenfrits.nl/privacy
Obsługiwane Języki 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\/*"
        ]
    }
}