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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Unofficial Meh.com Forum Unread Scroller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}