Unofficial Meh.com Forum Unread Scroller
This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.
Was ist Unofficial Meh.com Forum Unread Scroller?
Unofficial Meh.com Forum Unread Scroller ist eine Chrome-Erweiterung, die von jsh139 entwickelt wurde, und ihr Hauptmerkmal ist "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.".
Erweiterungsscreenshots
Unofficial Meh.com Forum Unread Scroller-Erweiterungs-CRX-Datei herunterladen
Laden Sie Unofficial Meh.com Forum Unread Scroller-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Unofficial Meh.com Forum Unread Scroller |
ID | klpmjcpadmaanbiehibhppmehkpcalbl |
Offizielle URL | https://chromewebstore.google.com/detail/unofficial-mehcom-forum-u/klpmjcpadmaanbiehibhppmehkpcalbl |
Beschreibung | This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums. |
Dateigröße | 70.28 KB |
Installationsanzahl | 31 |
Aktuelle Version | 1.7 |
Letztes Update | 2020-06-10 |
Veröffentlichungsdatum | 2020-06-10 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | jsh139 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |