Reddit Liberation: Feed Blocker

Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com

Τι είναι το Reddit Liberation: Feed Blocker;

Το Reddit Liberation: Feed Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://henryz.dev, και η κύρια λειτουργία του είναι "Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reddit Liberation: Feed Blocker

Λήψη αρχείων επέκτασης Reddit Liberation: Feed Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Extension to block scrolling reddit feeds, while still allowing the user to directly go on reddit comment threads through third party links (e.g. google search, or a message from a friend). Comes with a whitelist system, which allows users to specify specific subreddits the user doesn't want to block, and a blacklist system, which allows users to specify subreddits to block completely (comment threads included).

Purpose: Reddit has become ubiquitous in many of our lives. Which is why it's incredibly difficult to block the entire website with a generic website blocker. As reddit can be used for both productive and unproductive means, this app aims to eliminate the unproductive time sink elements of reddit (the infinite content cycle of feeds), and keep the productive elements (e.g. finding answers through a link given by google search, or a whitelisted subreddit).

This app aims to lower or eliminate time wasted by reddit in a smarter way than attempting to block it outright.

I am looking to always improve the app, so any feedback is welcome.                    

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

Όνομα Reddit Liberation: Feed Blocker Reddit Liberation: Feed Blocker
ID fllfmdjhnhhjokhdifhcdbpbfajfnhon
Επίσημο URL https://chromewebstore.google.com/detail/reddit-liberation-feed-bl/fllfmdjhnhhjokhdifhcdbpbfajfnhon
Περιγραφή Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com
Μέγεθος Αρχείου 23.03 KB
Αριθμός Εγκαταστάσεων 912
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2023-03-07
Ημερομηνία Δημοσίευσης 2021-11-25
Αξιολόγηση 4.91/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής https://henryz.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://henryz.dev/
URL της Σελίδας Πολιτικής Απορρήτου https://hz757.github.io/PortfolioWebsite/privacypolicy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Liberation: Feed Blocker",
    "description": "Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com",
    "version": "1.0.3",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "\/images\/extension_icon16.png",
            "32": "\/images\/extension_icon32.png",
            "48": "\/images\/extension_icon48.png",
            "128": "\/images\/extension_icon128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "css": [
                "my-styles.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/images\/extension_icon16.png",
        "32": "\/images\/extension_icon32.png",
        "48": "\/images\/extension_icon48.png",
        "128": "\/images\/extension_icon128.png"
    }
}