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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}