itsmydata

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

Was ist itsmydata?

itsmydata ist eine Chrome-Erweiterung, die von https://itsmydata.de entwickelt wurde, und ihr Hauptmerkmal ist "A tool to increase the awareness of your digital data traces.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

itsmydata-Erweiterungs-CRX-Datei herunterladen

Laden Sie itsmydata-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name itsmydata itsmydata
ID effcenjbafjikcpbglaiblnflkajldao
Offizielle URL https://chromewebstore.google.com/detail/itsmydata/effcenjbafjikcpbglaiblnflkajldao
Beschreibung A tool to increase the awareness of your digital data traces.
Dateigröße 874 KB
Installationsanzahl 157
Aktuelle Version 1.0.1
Letztes Update 2023-01-17
Veröffentlichungsdatum 2019-07-11
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://itsmydata.de
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://itsmydata.de
URL der Datenschutzrichtlinien-Seite https://portal.itsmydata.de/privacy
Unterstützte Sprachen 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"
        }
    ]
}