Youtube Shorts Auto Scroll - Productivity++

Automatically scrolls when a Youtube Short ends.

Youtube Shorts Auto Scroll - Productivity++란 무엇입니까?

Youtube Shorts Auto Scroll - Productivity++은(는) Productivity ++에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically scrolls when a Youtube Short ends."입니다.

확장 프로그램 스크린샷

screenshot

Youtube Shorts Auto Scroll - Productivity++ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed!

Made with ❤️ from the team at Productivity ++.

New version:
    Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload.
    Other bugs fixed                    

확장 프로그램 기본 정보

이름 Youtube Shorts Auto Scroll - Productivity++ Youtube Shorts Auto Scroll - Productivity++
ID bmjbgjndjeinofbgoanhkdgeclbfdbpm
공식 URL https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm
설명 Automatically scrolls when a Youtube Short ends.
파일 크기 618 KB
설치 횟수 332
현재 버전 69.420
최근 업데이트 2023-05-30
출시 날짜 2023-05-29
평점 3.67/5 총 3 개의 평점
개발자 Productivity ++
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Shorts Auto Scroll - Productivity++",
    "version": "69.420",
    "author": {
        "email": "[email protected]"
    },
    "description": "Automatically scrolls when a Youtube Short ends.",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_title": "YT Shorts Autoscroll",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scroll-plain.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ]
}