Unofficial Meh.com Forum Unread Scroller

This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.

Wat is Unofficial Meh.com Forum Unread Scroller?

Unofficial Meh.com Forum Unread Scroller is een Chrome-extensie ontwikkeld door jsh139, en de belangrijkste functie is "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Unofficial Meh.com Forum Unread Scroller

Download Unofficial Meh.com Forum Unread Scroller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Unofficial Meh.com Forum Unread Scroller Unofficial Meh.com Forum Unread Scroller
ID klpmjcpadmaanbiehibhppmehkpcalbl
Officiële URL https://chromewebstore.google.com/detail/unofficial-mehcom-forum-u/klpmjcpadmaanbiehibhppmehkpcalbl
Beschrijving This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.
Bestandsgrootte 70.28 KB
Aantal Installaties 31
Huidige Versie 1.7
Laatst Bijgewerkt 2020-06-10
Publicatiedatum 2020-06-10
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar jsh139
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}