Reddit Expand
Expand Reddit posts without having to open them in a new tab
Reddit Expand란 무엇입니까?
Reddit Expand은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Expand Reddit posts without having to open them in a new tab"입니다.
확장 프로그램 스크린샷
Reddit Expand 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds a little "Expand" option to the end of the title of a reddit post that is listed on either a front page or inside a subreddit. Clicking on said option opens a full preview of the post that can be closed by clicking on "Expand" again. The preview can be resized by using the provided edge on its bottom-right corner. You can edit your settings by clicking on the extension's icon while visiting Reddit. Please note that, although it works in some instances, posts that refer to websites other than Reddit might not load at all. This happens because the third-party website does not allow previews in iframes (e.g. YouTube). This extension uses the jQuery library that can be found at http://jquery.com/
확장 프로그램 기본 정보
이름 | Reddit Expand |
ID | ipcblbomijmmghplnnjjldeclakmnaah |
공식 URL | https://chromewebstore.google.com/detail/reddit-expand/ipcblbomijmmghplnnjjldeclakmnaah |
설명 | Expand Reddit posts without having to open them in a new tab |
파일 크기 | 39.43 KB |
설치 횟수 | 207 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2018-04-28 |
출시 날짜 | 2018-04-28 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Expand", "version": "1.1.1", "description": "Expand Reddit posts without having to open them in a new tab", "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/*.reddit.com\/*", "storage" ], "content_scripts": [ { "js": [ "res\/jquery-3.3.1.min.js", "inject.js" ], "matches": [ "*:\/\/www.reddit.com\/", "*:\/\/www.reddit.com\/r\/*", "*:\/\/www.reddit.com\/hot*", "*:\/\/www.reddit.com\/new*", "*:\/\/www.reddit.com\/rising*", "*:\/\/www.reddit.com\/controversial*", "*:\/\/www.reddit.com\/top*", "*:\/\/www.reddit.com\/gilded*" ] } ], "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "page_action": { "default_icon": "icons\/icon-48.png", "default_title": "Reddit Expand", "default_popup": "menu.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |