Search Fixer for YouTube

Remove all distracting YouTube search suggestions, redirect shorts and much more!

Τι είναι το Search Fixer for YouTube;

Το Search Fixer for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pheonix, και η κύρια λειτουργία του είναι "Remove all distracting YouTube search suggestions, redirect shorts and much more!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Search Fixer for YouTube

Λήψη αρχείων επέκτασης Search Fixer for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension is designed to fix YouTube search and de-clutter your search page to make it less distracting.

FEATURES  
1. Remove suggestions like "For you", "People also search for", "Searches related to", "Learn while you're at home", "Related to your search", "People also watched", "Other people are watching", "Recommended to you", "Latest YouTube posts" and more from your feed.
2. Remove Shorts from Search Results.
3. Remove Live Videos from Search Results.
4. Individual toggles for turning off different kinds of search results. Eg. Horizontal Cardlist, Shorts Panel, Auto-Generated YouTube Mixes and many more.
5. Option to permanently redirect "shorts" back to the normal video page.
6. Turn off playlists from appearing in search results.
7. Hide YouTube mixes and reels suggestions.
8. Filter out channel listings from results.
9. Spaced out collapsed sidebar on homepage with accent color to signify active tab.
10. Video Spotlight to highlight videos in the search page (optional).
11. Centered video title (optional).
12. Centered video description (optional).
13. An options page to turn off visual changes. 


IS IT SAFE?
Absolutely. This is some barebones JavaScript to detect elements and some CSS to apply visual changes. There are no trackers phoning home or telemetry scripts working in the background in this extension. Not to mention no data is being sent or shared with any third party or the developer. It's completely open source so you can audit the code.

---
Search Fixer for YouTube™
YouTube™ is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Search Fixer for YouTube Search Fixer for YouTube
ID bojdknokkpgboeonegndfcgkaommhleo
Επίσημο URL https://chromewebstore.google.com/detail/search-fixer-for-youtube/bojdknokkpgboeonegndfcgkaommhleo
Περιγραφή Remove all distracting YouTube search suggestions, redirect shorts and much more!
Μέγεθος Αρχείου 99.81 KB
Αριθμός Εγκαταστάσεων 2,476
Τρέχουσα Έκδοση 7
Τελευταία Ενημέρωση 2024-01-24
Ημερομηνία Δημοσίευσης 2023-06-26
Αξιολόγηση 4.73/5 Συνολικά 30 Αξιολογήσεις
Προγραμματιστής pheonix
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://phoennix.gitlab.io/youtubesearchfix/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Fixer for YouTube",
    "version": "7",
    "description": "Remove all distracting YouTube search suggestions, redirect shorts and much more!",
    "icons": {
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon256.png",
        "default_title": "Search Fixer for YouTube",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "ytt.js"
            ],
            "css": [
                "yt.css"
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/www.youtube.com\/"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "manifest_version": 3
}