TV for Reddit

Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.

TV for Reddit란 무엇입니까?

TV for Reddit은(는) http://www.georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plays all videos on a Reddit page sequentially. Designed for NBA Reddit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

TV for Reddit 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        TV for Reddit creates a "lean back" experience for Reddit pages.  It gives you the ability to just press 'play' and have all of the video highlights play sequentially as you pet your cat, wash dishes, take off the seven wintery layers you're wearing, etc.

Just press play. Watch the shared videos like you would a TV. 

Features:
- The ability to loop N times before advancing
- The ability to skip videos
- Supports videos on: Streamable, YouTube, Instagram, Streamja, Twitch
- Will show static content for some configurable amount of time before advancing.                    

확장 프로그램 기본 정보

이름 TV for Reddit TV for Reddit
ID pooaacpnddlojniimnhlkhbnceoaohhc
공식 URL https://chrome.google.com/webstore/detail/tv-for-reddit/pooaacpnddlojniimnhlkhbnceoaohhc
설명 Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.
파일 크기 150 KB
설치 횟수 11
현재 버전 1.16
최근 업데이트 2023-07-05
출시 날짜 2019-02-28
개발자 http://www.georgemike.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.georgemike.com/chrome/privacypolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.16",
    "name": "TV for Reddit",
    "short_name": "TV for Reddit",
    "description": "Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.",
    "homepage_url": "https:\/\/georgemike.com",
    "default_locale": "en",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/icon.128.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "128": "images\/icon.128.png"
        },
        "default_title": "TV for Reddit"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*",
                "https:\/\/*.instagram.com\/*",
                "https:\/\/instagram.com\/*",
                "https:\/\/*.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "https:\/\/*.streamable.com\/*",
                "https:\/\/streamable.com\/*",
                "https:\/\/*.streamja.com\/*",
                "https:\/\/streamja.com\/*",
                "https:\/\/*.reddit.com\/*",
                "https:\/\/reddit.com\/*"
            ],
            "js": [
                "js\/Config.js",
                "js\/PlaylistTracker.js",
                "js\/RedditModifier.js",
                "js\/RnbaAction.js",
                "js\/UrlType.js",
                "js\/Utils.js",
                "js\/content.js"
            ],
            "css": [
                "css\/tv.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+B",
                "windows": "Alt+Shift+B",
                "mac": "Alt+B"
            }
        }
    }
}