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 là gì?
Unofficial Meh.com Forum Unread Scroller là một tiện ích mở rộng Chrome được phát triển bởi jsh139, và tính năng chính của nó là "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Unofficial Meh.com Forum Unread Scroller
Tải xuống các tệp mở rộng Unofficial Meh.com Forum Unread Scroller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Unofficial Meh.com Forum Unread Scroller |
ID | klpmjcpadmaanbiehibhppmehkpcalbl |
URL Chính Thức | https://chromewebstore.google.com/detail/unofficial-mehcom-forum-u/klpmjcpadmaanbiehibhppmehkpcalbl |
Mô tả | This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums. |
Kích Thước Tệp | 70.28 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.7 |
Cập Nhật Lần Cuối | 2020-06-10 |
Ngày Phát Hành | 2020-06-10 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | jsh139 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |