Chrome Timeline

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

什麼是Chrome Timeline?

Chrome Timeline是由Yutaka Tsumori開發的Chrome擴展程式,該擴展的主要功能是“ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…”。

擴展截圖

screenshot

下載Chrome Timeline擴展crx文件

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

擴展使用說明

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

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

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

擴展基本資訊

名稱 Chrome Timeline Chrome Timeline
ID ccibndohboilgkheonohoooeafppchab
官方網址 https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab
簡介 ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
檔案大小 10.65 KB
安裝次數 516
目前版本 1.3.1
更新時間 2018-10-10
上架時間 2018-10-10
評分 4.33/5 共 3 次評分
開發者 Yutaka Tsumori
電子郵箱 [email protected]
付費類型 free
擴展官網 https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
隱私政策頁面URL https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
支援的語言 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"
    }
}