Old Reddit For Chrome

For those who prefer the old reddit interface.

Τι είναι το Old Reddit For Chrome;

Το Old Reddit For Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Team Doko, και η κύρια λειτουργία του είναι "For those who prefer the old reddit interface.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Old Reddit For Chrome

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

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

                        If you're someone who likes the old reddit interface you'll love this extension.

Welcome to Old Reddit For Chrome!

- Switch to the old reddit interface.
- Disable custom subreddit styles. (Use default styles.)
- Browse without logging in.
- No more annoying popups.
- You can set the extension to work only in incognito mode.

Note: To use this extension in incognito mode, you need to enable it in incognito mode:

- Click the extension icon in the address bar.
- Click manage extensions.
- Click the Details button in the extension.
- Toggle "Allow in incognito mode".

To configure this extension:

- Click the extension icon in the address bar.
- Click the menu button (three dots) next to the extension name.
- Click Options.
- Select your preferences.                    

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

Όνομα Old Reddit For Chrome Old Reddit For Chrome
ID hkcalkecmjhbkgkkfdblgdikfgoglmlc
Επίσημο URL https://chromewebstore.google.com/detail/old-reddit-for-chrome/hkcalkecmjhbkgkkfdblgdikfgoglmlc
Περιγραφή For those who prefer the old reddit interface.
Μέγεθος Αρχείου 233 KB
Αριθμός Εγκαταστάσεων 102
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2022-08-12
Ημερομηνία Δημοσίευσης 2021-12-28
Προγραμματιστής Team Doko
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://teamdoko.com/products/old-reddit-for-safari/
Διεύθυνση URL της Σελίδας Βοήθειας https://teamdoko.com/support/
URL της Σελίδας Πολιτικής Απορρήτου https://teamdoko.com/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Reddit For Chrome",
    "description": "For those who prefer the old reddit interface.",
    "version": "1.3.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "*:\/\/*.reddit.com\/*"
    ],
    "icons": {
        "16": "\/images\/old_reddit_16.png",
        "32": "\/images\/old_reddit_32.png",
        "48": "\/images\/old_reddit_48.png",
        "128": "\/images\/old_reddit_128.png"
    },
    "options_ui": {
        "page": "\/options\/index.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/reddit.com\/*",
                "*:\/\/www.reddit.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/old.reddit.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "\/content_old_reddit.js"
            ]
        }
    ]
}