itsmydata

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

itsmydata क्या है?

itsmydata https://itsmydata.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool to increase the awareness of your digital data traces."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में itsmydata एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम itsmydata itsmydata
ID effcenjbafjikcpbglaiblnflkajldao
आधिकारिक URL https://chromewebstore.google.com/detail/itsmydata/effcenjbafjikcpbglaiblnflkajldao
विवरण A tool to increase the awareness of your digital data traces.
फ़ाइल का आकार 874 KB
स्थापना संख्या 157
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-01-17
प्रकाशन तिथि 2019-07-11
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर https://itsmydata.de
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://itsmydata.de
गोपनीयता नीति पृष्ठ URL https://portal.itsmydata.de/privacy
समर्थित भाषाएँ 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"
        }
    ]
}