itsmydata

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

什麼是itsmydata?

itsmydata是由https://itsmydata.de開發的Chrome擴展程式,該擴展的主要功能是“A tool to increase the awareness of your digital data traces.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載itsmydata擴展crx文件

下載itsmydata擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}