Keep scroll sync

It's an extension for keep scroll position cross platform.

Keep scroll syncとは何ですか?

Keep scroll syncはLiDeguangによって開発されたChromeの拡張機能で、その主な機能は「It's an extension for keep scroll position cross platform.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Keep scroll sync拡張機能のCRXファイルをダウンロード

Keep scroll sync拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It's an extension for keeping page scroll position synced across platforms.
这是一个用于在不同设备之间同步页面滚动位置的浏览器扩展程序。

Roadmap: https://github.com/Deguang/keep-scroll-sync/issues/1

Data sync is based on chrome.storage (https://developer.chrome.com/extensions/storage)
数据同步是基于 chrome.storage (https://developer.chrome.com/extensions/storage) 实现的。                    

拡張機能の基本情報

名前 Keep scroll sync Keep scroll sync
ID lblfgppmhibloglgndekfdhmbfbdlndl
公式URL https://chromewebstore.google.com/detail/keep-scroll-sync/lblfgppmhibloglgndekfdhmbfbdlndl
説明 It's an extension for keep scroll position cross platform.
ファイルサイズ 21.75 KB
インストール数 41
現在のバージョン 0.1.0.0
最終更新日 2023-08-02
公開日 2018-11-22
評価 5.00/5 合計 3 レビュー
開発者 LiDeguang
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Deguang/keep-scroll-sync
対応言語 en
manifest.json
{
    "name": "Keep scroll sync",
    "description": "It's an extension for keep scroll position cross platform.",
    "version": "0.1.0.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": ".\/images\/logo_16.png",
            "32": ".\/images\/logo_32.png",
            "48": ".\/images\/logo_48.png",
            "128": ".\/images\/logo_128.png"
        }
    },
    "icons": {
        "16": ".\/images\/logo_16.png",
        "32": ".\/images\/logo_32.png",
        "48": ".\/images\/logo_48.png",
        "128": ".\/images\/logo_128.png"
    },
    "commands": {
        "open_extension": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens index.html"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "contentSettings"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx?response=updatecheck&id%3Dfpbpmnlgndlolnnbboiongdjanhdbaic%26uc"
}