companion for reddit
Turn your browser into a redditor's best friend.
companion for reddit란 무엇입니까?
companion for reddit은(는) Toolbox development team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn your browser into a redditor's best friend."입니다.
확장 프로그램 스크린샷
companion for reddit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a modified version of the official reddit companion which can be found here: https://chrome.google.com/webstore/detail/reddit-companion/algjnflpgoopkdijmkalfcifomdhmcbe This version fixes some long outstanding bugs and adds some new things: - https support: should work on (more) https pages now. - notifications work again: the old companion used an outdated call. - design tweaks: Less shadows, less gradients, less rounded corners. Todo: - Update the notifications to have a better suited icon that is not blurred out. - Add support for moderation related tasks. - Possibly integrate these with the moderator toolbox extension.
확장 프로그램 기본 정보
이름 | companion for reddit |
ID | hjndgefhmfcgpoocjcgoemphhdkbhipm |
공식 URL | https://chromewebstore.google.com/detail/companion-for-reddit/hjndgefhmfcgpoocjcgoemphhdkbhipm |
설명 | Turn your browser into a redditor's best friend. |
파일 크기 | 95.58 KB |
설치 횟수 | 1,166 |
현재 버전 | 2.0.4 |
최근 업데이트 | 2016-06-21 |
출시 날짜 | 2016-06-21 |
평점 | 4.61/5 총 23 개의 평점 |
개발자 | Toolbox development team |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/creesch/reddit-companion |
개인정보 보호 정책 페이지 URL | https://www.reddit.com/r/toolbox/wiki/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "companion for reddit", "version": "2.0.4", "manifest_version": 2, "description": "Turn your browser into a redditor's best friend.", "options_page": "options.html", "permissions": [ "tabs", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "default-src 'self'; connect-src 'self' https:\/\/*.reddit.com; connect-src 'self' http:\/\/*.reddit.com; style-src 'self' 'unsafe-inline'; script-src 'self'", "icons": { "16": "images\/shine-16.png", "48": "images\/shine-48.png", "128": "images\/shine-128.png" }, "background": { "page": "background.html" }, "page_action": { "default_icon": "images\/reddit.png", "default_title": "Show reddit information" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "debug.js", "redditContent.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "debug.js", "pageOverlay.js" ] } ], "web_accessible_resources": [ "pageOverlay.css", "bar.html", "submit.html", "images\/reddit-mail.svg", "images\/reddit-modmail.svg" ] } |