FreshView for YouTube™

Hide YouTube™ videos you've already watched to easily discover fresh content.

FreshView for YouTube™ क्या है?

FreshView for YouTube™ Mikhail Andrenkov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide YouTube™ videos you've already watched to easily discover fresh content."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FreshView for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        FreshView for YouTube™ is an extension that helps you discover new YouTube™ videos by hiding ones you have already watched.

What can I control?
• The visibility of viewed YouTube™ videos using the "Hide Videos" toggle.
• The minimum watch progress of a viewed YouTube™ video using the "View Threshold" slider.

Are there any restrictions?
• You must be logged into a YouTube™ account with watch history enabled.

Where can I donate?
• Nowhere.  Keep your money and enjoy!

What's new in FreshView for YouTube™ 2.1.0?
• A dedicated options page for configuring the extension.
• Filters to avoid hiding certain types of videos (e.g., playlist videos).
• Filters to always show watched videos on predefined YouTube™ pages.
• Multiple accessibility, performance, and reliability improvements.

YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

एक्सटेंशन की मूल जानकारी

नाम FreshView for YouTube™ FreshView for YouTube™
ID eckknmnfoohbeklmjlidmfdlakndcfkm
आधिकारिक URL https://chromewebstore.google.com/detail/freshview-for-youtube/eckknmnfoohbeklmjlidmfdlakndcfkm
विवरण Hide YouTube™ videos you've already watched to easily discover fresh content.
फ़ाइल का आकार 764 KB
स्थापना संख्या 8,764
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2022-02-14
प्रकाशन तिथि 2020-03-13
रेटिंग 3.91/5 कुल 98 रेटिंग्स
डेवलपर Mikhail Andrenkov
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Mandrenkov/FreshView
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FreshView for YouTube\u2122",
    "short_name": "FreshView for YouTube\u2122",
    "description": "Hide YouTube\u2122 videos you've already watched to easily discover fresh content.",
    "version": "2.1.0",
    "background": {
        "scripts": [
            "js\/constants.js",
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-hide-videos-checkbox": {
            "description": "Toggle \"Hide Videos\""
        },
        "toggle-view-threshold-checkbox": {
            "description": "Toggle \"View Threshold\""
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/album.js",
                "js\/constants.js",
                "js\/extractor.js",
                "js\/logger.js",
                "js\/manager.js",
                "js\/page.js",
                "js\/path.js",
                "js\/settings.js",
                "js\/storage.js",
                "js\/video.js",
                "js\/injection.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_ui": {
        "browser_style": true,
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "page_action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "19": "img\/icon19.png",
            "24": "img\/icon24.png",
            "32": "img\/icon32.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "html\/popup.html",
        "default_title": "FreshView for YouTube\u2122"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}