My Reddit Companion

My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.

My Reddit Companion란 무엇입니까?

My Reddit Companion은(는) alex2005에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        My Reddit Companion is an extension that integrates Reddit into the browser.  
It has a new slick responsive UI made with Bootstrap 4.  
  
After opening a Reddit link, either by clicking the thumbnail/title or using the keyboard (supports RES keyboard nav), it shows a bar with common info (score, title, subreddit, comments) and actions (login, upvote, downvote, save, moderator spam/remove/approve, close or minimize).  
  
Moderator actions and unread messages notifications are enabled by default.  
It has a lot of options, like to disable the aforementioned options, a dark theme, transparent background, start the bar minimized, bar persists between pages and others (see the settings screenshot for the complete list).  
  
After minimizing the bar, right click the maximize button to move it in the opposite direction (if it blocks anything in the page).  
Supports links with multiple redirects.  
  
Click the browser action to open a new tab to the Reddit submit page with the url and title autocompleted.                    

확장 프로그램 기본 정보

이름 My Reddit Companion My Reddit Companion
ID ghkmgdhpbkijdnnhodlejkbpehnkoglf
공식 URL https://chromewebstore.google.com/detail/my-reddit-companion/ghkmgdhpbkijdnnhodlejkbpehnkoglf
설명 My Reddit Companion integrates Reddit into the browser. After opening a link (mouse/keyboard) it shows a bar with info and actions.
파일 크기 1.06 MB
설치 횟수 117
현재 버전 3.4.3
최근 업데이트 2021-10-30
출시 날짜 2019-02-12
평점 3.00/5 총 1 개의 평점
개발자 alex2005
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/akalineskou/my-reddit-companion
도움말 페이지 URL https://github.com/akalineskou/my-reddit-companion/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Reddit Companion",
    "version": "3.4.3",
    "manifest_version": 2,
    "description": "My Reddit Companion integrates Reddit into the browser. After opening a link (mouse\/keyboard) it shows a bar with info and actions.",
    "homepage_url": "https:\/\/github.com\/alex2005git\/my-reddit-companion",
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "notifications",
        ""
    ],
    "icons": {
        "16": "images\/reddit-16.png",
        "24": "images\/reddit-24.png",
        "32": "images\/reddit-32.png",
        "48": "images\/reddit-48.png",
        "64": "images\/reddit-64.png",
        "96": "images\/reddit-96.png",
        "128": "images\/reddit-128.png"
    },
    "background": {
        "page": "html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "libs\/jquery.js",
                "js\/debug.js",
                "js\/utils.js",
                "js\/options.js",
                "js\/content_reddit.js",
                "js\/content_overlay.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/content_overlay.css",
        "html\/content_bar.html"
    ],
    "options_ui": {
        "page": "html\/options.html"
    },
    "browser_action": {
        "default_title": "Submit to Reddit",
        "default_icon": {
            "16": "images\/reddit-16.png",
            "24": "images\/reddit-24.png",
            "32": "images\/reddit-32.png",
            "48": "images\/reddit-48.png"
        }
    }
}