Chrome Timeline
ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
什么是Chrome Timeline?
Chrome Timeline是由Yutaka Tsumori开发的Chrome扩展程序,该扩展的主要功能是“ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…”。
扩展截图
下载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を削除する 扩展基本信息
| 名称 | |
| ID | ccibndohboilgkheonohoooeafppchab |
| 官方URL | 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"
}
} | |