Chrome Timeline

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

Cos'è Chrome Timeline?

Chrome Timeline è un'estensione di Chrome sviluppata da Yutaka Tsumori, e la sua funzione principale è "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chrome Timeline

Scarica i file di estensione Chrome Timeline in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

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

Informazioni di Base sull'Estensione

Nome Chrome Timeline Chrome Timeline
ID ccibndohboilgkheonohoooeafppchab
URL Ufficiale https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab
Descrizione ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
Dimensione del File 10.65 KB
Conteggio Installazioni 516
Versione Corrente 1.3.1
Ultimo Aggiornamento 2018-10-10
Data di Pubblicazione 2018-10-10
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore Yutaka Tsumori
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
URL della Pagina della Politica sulla Privacy https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
Lingue Supportate 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"
    }
}