Unofficial Meh.com Forum Unread Scroller
This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.
Unofficial Meh.com Forum Unread Scroller란 무엇입니까?
Unofficial Meh.com Forum Unread Scroller은(는) jsh139에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums."입니다.
확장 프로그램 스크린샷
Unofficial Meh.com Forum Unread Scroller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums. This makes it easy to navigate through unread items on the forum. Simply click on the 'm' button to automatically scroll to the next unread item. Once all unread threads/replies have been scrolled to, clicking the button scrolls back to the first unread item. Works on the following forums: https://meh.com/forum https://mediocre.com/forum https://drone.horse/forum https://casemates.com/forum https://mediocritee.com/forum https://pastadrop.com/forum
확장 프로그램 기본 정보
이름 | Unofficial Meh.com Forum Unread Scroller |
ID | klpmjcpadmaanbiehibhppmehkpcalbl |
공식 URL | https://chromewebstore.google.com/detail/unofficial-mehcom-forum-u/klpmjcpadmaanbiehibhppmehkpcalbl |
설명 | This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums. |
파일 크기 | 70.28 KB |
설치 횟수 | 31 |
현재 버전 | 1.7 |
최근 업데이트 | 2020-06-10 |
출시 날짜 | 2020-06-10 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | jsh139 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Unofficial Meh.com Forum Unread Scroller", "short_name": "Meh Scroller", "description": "This extension scrolls to the next unread thread\/comment\/reply on A Mediocre Corporation's online forums.", "version": "1.7", "permissions": [ "tabs", "https:\/\/meh.com\/forum\/*", "https:\/\/mediocre.com\/forum\/*", "https:\/\/drone.horse\/forum\/*", "https:\/\/casemates.com\/forum\/*", "https:\/\/mediocritee.com\/forum\/*", "https:\/\/pastadrop.com\/forum\/*" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_title": "Scroll to next unread", "default_icon": "icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/meh.com\/forum\/*", "https:\/\/mediocre.com\/forum\/*", "https:\/\/drone.horse\/forum\/*", "https:\/\/casemates.com\/forum\/*", "https:\/\/mediocritee.com\/forum\/*", "https:\/\/pastadrop.com\/forum\/*" ], "js": [ "jquery-2.1.1.min.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |