Old Reddit For Chrome

For those who prefer the old reddit interface.

Old Reddit For Chrome란 무엇입니까?

Old Reddit For Chrome은(는) Team Doko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For those who prefer the old reddit interface."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Old Reddit For Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}