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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jsh139 และคุณลักษณะหลักของมันคือ "This extension scrolls to the next unread thread/comment/reply on A Mediocre Corporation's online forums."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unofficial Meh.com Forum Unread Scroller

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}