Unofficial Meh.com Forum Unread Scroller

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

Vad är Unofficial Meh.com Forum Unread Scroller?

Unofficial Meh.com Forum Unread Scroller är en Chrome-tillägg utvecklad av jsh139, och dess huvudfunktion är "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Unofficial Meh.com Forum Unread Scroller-förlängningens CRX-fil

Ladda ner Unofficial Meh.com Forum Unread Scroller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Unofficial Meh.com Forum Unread Scroller Unofficial Meh.com Forum Unread Scroller
ID klpmjcpadmaanbiehibhppmehkpcalbl
Officiell webbadress https://chromewebstore.google.com/detail/unofficial-mehcom-forum-u/klpmjcpadmaanbiehibhppmehkpcalbl
Beskrivning This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.
Filstorlek 70.28 KB
Antal Installationer 31
Aktuell Version 1.7
Senast Uppdaterad 2020-06-10
Publiceringsdatum 2020-06-10
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare jsh139
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}