Move Reddit Buttons

Moves the share/save/hide/report buttons to the left.

Move Reddit Buttons란 무엇입니까?

Move Reddit Buttons은(는) Ictinus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Moves the share/save/hide/report buttons to the left."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Intended for Reddit, this extension moves the share/save/hide/report/comment buttons to the left of the tagline (points/age/submitter) so that the buttons do not change position horizontally from one entry to the next.

Especially convenient for those who like to hide entries in rapid succession.

You may also wish to check out the evolved version of this extension which is a  userscript. See the support link.                    

확장 프로그램 기본 정보

이름 Move Reddit Buttons Move Reddit Buttons
ID mbdhoojhjoeboanilfflnmffphkndicn
공식 URL https://chromewebstore.google.com/detail/move-reddit-buttons/mbdhoojhjoeboanilfflnmffphkndicn
설명 Moves the share/save/hide/report buttons to the left.
파일 크기 53.45 KB
설치 횟수 14
현재 버전 1.23.1
최근 업데이트 2014-07-26
출시 날짜 2014-07-26
평점 4.71/5 총 7 개의 평점
개발자 Ictinus
결제 유형 free
도움말 페이지 URL http://userscripts.org/scripts/show/66496
지원되는 언어 ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Move Reddit Buttons",
    "description": "Moves the share\/save\/hide\/report buttons to the left.",
    "version": "1.23.1",
    "background": {
        "scripts": []
    },
    "permissions": [
        "http:\/\/*.reddit.com\/",
        "https:\/\/*.reddit.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "moveRedditButtons.user.js"
            ]
        }
    ]
}