Simple Reddit

Simplify the new Reddit layout.

Simple Reddit란 무엇입니까?

Simple Reddit은(는) Tab Manager Plus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplify the new Reddit layout."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Simple Reddit 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple Reddit ʕ•ᴥ•ʔ

Cleans up the new reddit layout, makes it more compact - and closer to how the old reddit layout looked - but while keeping the new reddit features. That's all.

It's a little bit like the Reddit Enhancement Suite, just for the new design. And simpler.

Note : Simple Reddit is not officially affiliated with Reddit.

Some feedback from users : (。◕‿◕。)

♥ "The blue makes me feel all fuzzy inside. Thank you sir."
♥ "woah your tweaks are really nice. So much less cluttered. I think the redesign would be a lot more popular if it looked like this."

( ͡° ͜ʖ ͡°) Please rate & review the extension if you like it!

And you can leave bug reports and feedback here, or on reddit : https://www.reddit.com/r/redesign/comments/8lqzoj/simple_reddit_a_chrome_extension_to_make_the/

Changelog : ┬─┬ノ(ಠ_ಠノ) 

v.1.0.11
- General updates to make it work with latest reddit changes

v.1.0.10
- Sets the lightbox background to white

v.1.0.9
- Sets the lightbox to maximum 80% width ( instead of full page width )
- If you click on the lightbox background, it will close the lightbox
- Small fixes to links of "reply" notifications in the popup, as they sent you nowhere
- Fixes for utf-8 characters in the popup

v.1.0.8
- Adds a popup that shows you your latest inbox, posts and comments if you're logged in
- Fixes for the changed layout - fading out the header and side-bars now properly
- Shows long images in the preview now in a nicer way

v.1.0.7
- Adds color coding to comments based on the amount of points they got
- Quick icons to get you to your comments and posts page added to the nav bar
- Fixed some expandos ( image preview buttons ) hiding for no reason
- Adjusted styles based on recent reddit updates
- Adjusted border colors for images

v.1.0.6
- Make the profile link in the top right header send you to your profile right away, instead of opening the menu
- Adds shortcuts that send you to your comments and posts page

v.1.0.5
- The reddit header won't scroll any longer with the page

v.1.0.4
- Don't change colors of upvote/downvote buttons, just fade them slightly

v.1.0.3
- Remember if night mode was enabled, and apply day/night style right away
- Note in options about forcing the new design ( some people don't see a difference on new.reddit.com ) : If it doesn't work at first, log out & log into reddit - then it should work

v.1.0.2
- Works now in night mode, yay!
- Nicer colors in night mode - and lower opacity for less eye strain
- Highlights visited outbound links in purple
- Fixed layout display issues with REH ( Reddit Enhancement Suite )
- Better at hiding useless expansion buttons

v.1.0.1
- Show visited headlines in purple
- Auto-switch to the classic view ( configurable in options )
- Allow to force the new layout to be enabled - also for users who don't have the new layout as an option yet ( configurable in options )
- Automatically hide the left-side login menu if it's open on page load ( e.g. in Incognito window )

v.1.0.0
- Initial release
- Fixes headlines being now shown in blue, instead of black
- Less colors on the frontpage
- Fade out the header and right side menu while they're not active
- Highlight ads with a light golden background
- Limit the size of the preview items, for a more compact experience                    

확장 프로그램 기본 정보

이름 Simple Reddit Simple Reddit
ID jejipnoipkfdminjihaekdfipkiddmgo
공식 URL https://chromewebstore.google.com/detail/simple-reddit/jejipnoipkfdminjihaekdfipkiddmgo
설명 Simplify the new Reddit layout.
파일 크기 261 KB
설치 횟수 258
현재 버전 1.0.11
최근 업데이트 2019-02-25
출시 날짜 2019-02-24
평점 4.20/5 총 5 개의 평점
개발자 Tab Manager Plus
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Reddit",
    "short_name": "Simple Reddit",
    "version": "1.0.11",
    "description": "Simplify the new Reddit layout.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*",
                "http:\/\/*.reddit.com\/*"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_start",
            "js": [
                "js\/simplereddit.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/*.reddit.com\/*",
        "http:\/\/*.reddit.com\/*",
        "storage"
    ],
    "icons": {
        "128": "images\/simpleredditlogo.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "128": "images\/simpleredditlogo.png"
        },
        "default_popup": "popup.html",
        "default_title": "Simple Reddit"
    },
    "options_page": "options.html"
}