Reddit : Jump to subReddit
Find all subReddit listed on a page and open them from the context menu.
Reddit : Jump to subReddit란 무엇입니까?
Reddit : Jump to subReddit은(는) Arnaud Lepaul에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find all subReddit listed on a page and open them from the context menu."입니다.
확장 프로그램 스크린샷
Reddit : Jump to subReddit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Jump from a subReddit to another via the context menu. Just open a Reddit.com page and you'll get a context menu with all subReddits listed in the page. The extension catch the following patterns : - r/subreddit - /r/subreddit Changelog 0.9 - Initial release 1.0.0 - New : Refresh Context menu entry 2.0.0 - Change : Using Google Chrome Manifest v2 2.0.1 - New : Auto refresh when changing tab (context menu always up-to-date when browsing a Reddit Tab) - Change : No context menu when not on a Reddit Tab 2.0.2 - Change : Renamed to "Reddit : Jump to subReddit" 2.0.3 - Fix : changed RegExp 2.0.4 - Bugfix
확장 프로그램 기본 정보
이름 | Reddit : Jump to subReddit |
ID | jllllodicenbdlcllpfjekckcdmncbac |
공식 URL | https://chromewebstore.google.com/detail/reddit-jump-to-subreddit/jllllodicenbdlcllpfjekckcdmncbac |
설명 | Find all subReddit listed on a page and open them from the context menu. |
파일 크기 | 53.74 KB |
설치 횟수 | 63 |
현재 버전 | 2.0.4 |
최근 업데이트 | 2013-07-16 |
출시 날짜 | 2013-07-16 |
개발자 | Arnaud Lepaul |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.0.4", "name": "Reddit : Jump to subReddit", "description": "Find all subReddit listed on a page and open them from the context menu.", "icons": { "128": "icon-large.png", "16": "icon-bitty.png", "48": "icon-small.png" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.min.js", "content_script.js" ], "matches": [ "http:\/\/www.reddit.com\/*" ] } ], "permissions": [ "tabs", "contextMenus", "notifications" ], "web_accessible_resources": [ "icon-small.png" ] } |