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開發的Chrome擴展程式,該擴展的主要功能是“This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums.”。

擴展截圖

screenshot
screenshot
screenshot

下載Unofficial Meh.com Forum Unread Scroller擴展crx文件

下載Unofficial Meh.com Forum Unread Scroller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}