Chrome Timeline

ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…

Hvad er Chrome Timeline?

Chrome Timeline er en Chrome-udvidelse udviklet af Yutaka Tsumori, og dens hovedfunktion er "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".

Udvidelsesskærmbilleder

screenshot

Download Chrome Timeline-udvidelses-CRX-fil

Download Chrome Timeline-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。
このアドオンをインストールし、アドオンからMicrosoftアカウントにログインするとChromeの履歴がMicrosoftアカウントを通してWindows Timelineと同期されます。

とりあえず作ってみた感じなので、とりあえず動きますね。ということが確認できる程度の実装です。

1.3.0で次の機能を追加しました。
- パスワードフォームが含まれている場合にActivityに保存しない
- Activityに保存するURLからQueryStringを削除する                    

Grundlæggende oplysninger om udvidelsen

Navn Chrome Timeline Chrome Timeline
ID ccibndohboilgkheonohoooeafppchab
Officiel URL https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab
Beskrivelse ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
Filstørrelse 10.65 KB
Antal Installationer 516
Nuværende Version 1.3.1
Senest Opdateret 2018-10-10
Udgivelsesdato 2018-10-10
Bedømmelse 4.33/5 Samlet 3 Bedømmelser
Udvikler Yutaka Tsumori
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
URL til Fortrolighedspolitik Side https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
Understøttede Sprog ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Timeline",
    "version": "1.3.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "timeline.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "identity",
        "storage",
        "https:\/\/graph.microsoft.com\/v1.0\/me\/activities\/*",
        "https:\/\/login.microsoftonline.com\/common\/oauth2\/v2.0\/token"
    ],
    "options_ui": {
        "page": "options\/index.html"
    }
}