Threads for YouTube
Reddit comments on YouTube.
Threads for YouTube क्या है?
Threads for YouTube a-bravo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reddit comments on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Threads for YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can switch between a YouTube video's related Reddit posts, Reddit comments, and YouTube comments. Features: - Works for all YT videos (private, deleted, etc) - List all Reddit posts related to the current video - Sort posts - Easily go to each post's linked timestamp (if present) - Blacklist subreddits - View each post's comments - Sort comments - Easily collapse comments - Hide/Show all child comments - Option to auto collapse 'stickied' u/AutoModerator comments - Compatible with YouTube's dark mode - Switches to Youtube comments if no reddit comments are found - Change any default settings in the options - Available on Chrome & Firefox Upcoming Features: - Log in to save, upvote, post, comment - Internationalize extension and store listings Threads for YouTube doesn't show ads and doesn't send user's data anywhere (it does use the YouTube video ID to get Reddit posts/comments). It is fully open-source (https://github.com/a-bravo/threads-for-youtube). Contributions are welcome! *** If you have any problems or feature requests, submit them to the bug tracker (https://github.com/a-bravo/threads-for-youtube/issues). *** ---------- Permissions explained: - youtube.com: required in order to add Reddit comments to YouTube pages - reddit.com: required in order to access Reddit's api
एक्सटेंशन की मूल जानकारी
नाम | Threads for YouTube |
ID | npbmhogimiolmklafhlpbifkjinoadkh |
आधिकारिक URL | https://chromewebstore.google.com/detail/threads-for-youtube/npbmhogimiolmklafhlpbifkjinoadkh |
विवरण | Reddit comments on YouTube. |
फ़ाइल का आकार | 103 KB |
स्थापना संख्या | 26 |
वर्तमान संस्करण | 0.13.0 |
अंतिम अपडेट | 2023-10-12 |
प्रकाशन तिथि | 2020-04-20 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | a-bravo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/a-bravo/threads-for-youtube#readme |
सहायता पृष्ठ URL | https://github.com/a-bravo/threads-for-youtube/issues |
गोपनीयता नीति पृष्ठ URL | https://github.com/a-bravo/threads-for-youtube/blob/master/PRIVACY.md |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Threads for YouTube", "short_name": "TFY", "version": "0.13.0", "description": "Reddit comments on YouTube.", "homepage_url": "https:\/\/github.com\/a-bravo\/threads-for-youtube#readme", "icons": { "16": "icons\/[email protected]", "32": "icons\/[email protected]", "48": "icons\/[email protected]", "96": "icons\/[email protected]", "128": "icons\/[email protected]" }, "web_accessible_resources": [ "images\/*.png" ], "minimum_chrome_version": "43", "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "53.0" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content_script.bundle.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.bundle.js" ] }, "permissions": [ "storage", "https:\/\/*.reddit.com\/*" ], "options_ui": { "page": "options\/index.html", "open_in_tab": true } } |