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.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Ikbenfrits

Скачайте файлы расширений 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 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/
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\/*"
        ]
    }
}