Chrome Timeline

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

Wat is Chrome Timeline?

Chrome Timeline is een Chrome-extensie ontwikkeld door Yutaka Tsumori, en de belangrijkste functie is "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chrome Timeline

Download Chrome Timeline-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

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

Basisinformatie over de Extensie

Naam Chrome Timeline Chrome Timeline
ID ccibndohboilgkheonohoooeafppchab
Officiële URL https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab
Beschrijving ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
Bestandsgrootte 10.65 KB
Aantal Installaties 516
Huidige Versie 1.3.1
Laatst Bijgewerkt 2018-10-10
Publicatiedatum 2018-10-10
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Yutaka Tsumori
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
URL van de Privacybeleid Pagina https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
Ondersteunde Talen 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"
    }
}