Simultaneous Scrolling

Scroll tabs at the same time! Using this extension, you can view two tabs in different languages at the same time.

Simultaneous Scrolling란 무엇입니까?

Simultaneous Scrolling은(는) fumyparli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scroll tabs at the same time! Using this extension, you can view two tabs in different languages at the same time."입니다.

확장 프로그램 스크린샷

screenshot

Simultaneous Scrolling 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The automatic translation function will be provided later.

---------- Release Notes ----------
1.0.3 - Fixed a bug that does not work in windows OS full screen mode.
---------------------------------------------

icons created by Freepik - Flaticon: https://www.flaticon.com/free-icons/magic                    

확장 프로그램 기본 정보

이름 Simultaneous Scrolling Simultaneous Scrolling
ID kdhkfpcbdfdifbpfdoghkgfhclhfjpkk
공식 URL https://chromewebstore.google.com/detail/simultaneous-scrolling/kdhkfpcbdfdifbpfdoghkgfhclhfjpkk
설명 Scroll tabs at the same time! Using this extension, you can view two tabs in different languages at the same time.
파일 크기 20.2 KB
설치 횟수 392
현재 버전 1.0.3
최근 업데이트 2023-05-20
출시 날짜 2023-01-29
평점 4.71/5 총 7 개의 평점
개발자 fumyparli
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simultaneous Scrolling",
    "description": "Scroll tabs at the same time! Using this extension, you can view two tabs in different languages at the same time.",
    "version": "1.0.3",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "images\/icon128.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}