Chrome Timeline
ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
Vad är Chrome Timeline?
Chrome Timeline är en Chrome-tillägg utvecklad av Yutaka Tsumori, och dess huvudfunktion är "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".
Tilläggsskärmbilder
Ladda ner Chrome Timeline-förlängningens CRX-fil
Ladda ner Chrome Timeline-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。
このアドオンをインストールし、アドオンからMicrosoftアカウントにログインするとChromeの履歴がMicrosoftアカウントを通してWindows Timelineと同期されます。
とりあえず作ってみた感じなので、とりあえず動きますね。ということが確認できる程度の実装です。
1.3.0で次の機能を追加しました。
- パスワードフォームが含まれている場合にActivityに保存しない
- Activityに保存するURLからQueryStringを削除する Grundläggande Information om Tillägg
| Namn | |
| ID | ccibndohboilgkheonohoooeafppchab |
| Officiell webbadress | https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab |
| Beskrivning | ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。… |
| Filstorlek | 10.65 KB |
| Antal Installationer | 516 |
| Aktuell Version | 1.3.1 |
| Senast Uppdaterad | 2018-10-10 |
| Publiceringsdatum | 2018-10-10 |
| Betyg | 4.33/5 Totalt 3 Betyg |
| Utvecklare | Yutaka Tsumori |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87 |
| URL till Sekretesspolicy Sidan | https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87 |
| Stödda Språk | 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"
}
} | |