itsmydata

A tool to increase the awareness of your digital data traces.

¿Qué es itsmydata?

itsmydata es una extensión de Chrome desarrollada por https://itsmydata.de, y su función principal es "A tool to increase the awareness of your digital data traces.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión itsmydata

Descarga archivos de extensión itsmydata en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        With this extension the user can record his internet surfing behavior on his browser for
himself and view it in his personal user account at itsmydata.
The recorded surfing data is displayed in a visualization under 'My Data', with the activity pattern over time, in 12 different context categories (e.g. sports, finance, entertainment, etc.) and detailed down to the respective website. In addition, the user can compare his surfing data with those of other users anonymously.
The addon stores every 5 seconds which website is accessed in the active tab. This collected data qualifies as personal data and can only be viewed by the user. itsmydata does not share the data with third parties outside the platform. This extension service is free of charge.                    

Información Básica de la Extensión

Nombre itsmydata itsmydata
ID effcenjbafjikcpbglaiblnflkajldao
URL Oficial https://chromewebstore.google.com/detail/itsmydata/effcenjbafjikcpbglaiblnflkajldao
Descripción A tool to increase the awareness of your digital data traces.
Tamaño del Archivo 874 KB
Cantidad de Instalaciones 157
Versión Actual 1.0.1
Última Actualización 2023-01-17
Fecha de Publicación 2019-07-11
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador https://itsmydata.de
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://itsmydata.de
URL de la Página de Política de Privacidad https://portal.itsmydata.de/privacy
Idiomas Soportados de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionTitle__",
    "version": "1.0.1",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "homepage_url": "https:\/\/itsmydata.de",
    "default_locale": "en",
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo.png"
    },
    "web_accessible_resources": [
        "manifest.json"
    ],
    "permissions": [
        "storage",
        "tabs",
        "",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "api.js",
            "background.js",
            "vendors.js"
        ]
    },
    "browser_action": {
        "default_icon": "logo-off.png",
        "default_title": "It's my data",
        "default_popup": "login.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendors.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/_\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_idle"
        }
    ]
}