Chrome Timeline
ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
What is Chrome Timeline?
Chrome Timeline is a Chrome extension developed by Yutaka Tsumori, and its main feature is "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".
Extension Screenshots
Download Chrome Timeline Extension CRX File
Download Chrome Timeline extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。 このアドオンをインストールし、アドオンからMicrosoftアカウントにログインするとChromeの履歴がMicrosoftアカウントを通してWindows Timelineと同期されます。 とりあえず作ってみた感じなので、とりあえず動きますね。ということが確認できる程度の実装です。 1.3.0で次の機能を追加しました。 - パスワードフォームが含まれている場合にActivityに保存しない - Activityに保存するURLからQueryStringを削除する
Extension Basic Information
Name | Chrome Timeline |
ID | ccibndohboilgkheonohoooeafppchab |
Official URL | https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab |
Description | ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。… |
File Size | 10.65 KB |
Installation Count | 516 |
Current Version | 1.3.1 |
Last Updated | 2018-10-10 |
Publish Date | 2018-10-10 |
Rating | 4.33/5 Total 3 Ratings |
Developer | Yutaka Tsumori |
[email protected] | |
Payment Type | free |
Extension Website | https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87 |
Privacy Policy Page URL | https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87 |
Supported Languages | 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" } } |