Chrome Timeline

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

Qu'est-ce que Chrome Timeline ?

Chrome Timeline est une extension Chrome développée par Yutaka Tsumori, et sa fonction principale est "ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrome Timeline

Téléchargez les fichiers d'extension Chrome Timeline au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

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

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

Informations de Base sur l'Extension

Nom Chrome Timeline Chrome Timeline
ID ccibndohboilgkheonohoooeafppchab
URL Officiel https://chromewebstore.google.com/detail/chrome-timeline/ccibndohboilgkheonohoooeafppchab
Description ChromeのWebアクセス履歴をWindows TimelineのActivityと同期するアドオンです。…
Taille du Fichier 10.65 KB
Nombre d'Installations 516
Version Actuelle 1.3.1
Dernière Mise à Jour 2018-10-10
Date de Publication 2018-10-10
Évaluation 4.33/5 Total 3 Évaluations
Développeur Yutaka Tsumori
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
URL de la Page de Politique de Confidentialité https://gist.github.com/tmyt/13bd60341c6e5295a58fcd31b6750e87
Langues Prises en Charge 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"
    }
}