Old Reddit For Chrome

For those who prefer the old reddit interface.

Old Reddit For Chrome क्या है?

Old Reddit For Chrome Team Doko द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For those who prefer the old reddit interface."।

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

screenshot
screenshot
screenshot

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

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

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

                        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"
            ]
        }
    ]
}