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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
}