TV for Reddit

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

Vad är TV for Reddit?

TV for Reddit är en Chrome-tillägg utvecklad av http://www.georgemike.com, och dess huvudfunktion är "Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner TV for Reddit-förlängningens CRX-fil

Ladda ner TV for Reddit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn TV for Reddit TV for Reddit
ID pooaacpnddlojniimnhlkhbnceoaohhc
Officiell webbadress https://chrome.google.com/webstore/detail/tv-for-reddit/pooaacpnddlojniimnhlkhbnceoaohhc
Beskrivning Plays all videos on a Reddit page sequentially. Designed for NBA Reddit.
Filstorlek 150 KB
Antal Installationer 11
Aktuell Version 1.16
Senast Uppdaterad 2023-07-05
Publiceringsdatum 2019-02-28
Utvecklare http://www.georgemike.com
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.georgemike.com/chrome/privacypolicy
Stödda Språk 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"
            }
        }
    }
}