Ask Historians Comment Helper

Ask Historians Comment Helper

Ask Historians Comment Helperคืออะไร?

Ask Historians Comment Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rundgongdev และคุณลักษณะหลักของมันคือ "Ask Historians Comment Helper"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ask Historians Comment Helper

ดาวน์โหลดไฟล์ส่วนขยาย Ask Historians Comment Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The AskHistorians sub-reddit ( https://www.reddit.com/r/AskHistorians/ ) has very strict moderation rules. This means many comments gets removed, and it is hard to know if a question has received an answer from reading the normal comment count.
This add-on will show the number of top level comments that have not been removed. Comments made by moderators are also not counted. When this number is not zero, it usually means there is an answer to the question.

*NOTE* This number is a reflection of the current state of the topic in question. It does NOT mean mods have approved the answer. It is possible mods have not yet seen the answer and will remove it later.

It also allows you to monitor topics to see when they will get an answer.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Ask Historians Comment Helper Ask Historians Comment Helper
ID jdkfbkogojpmdmpnkgjcgpngkkmhdfem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ask-historians-comment-he/jdkfbkogojpmdmpnkgjcgpngkkmhdfem
คำอธิบาย Ask Historians Comment Helper
ขนาดไฟล์ 20.34 KB
จำนวนการติดตั้ง 1,345
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-09-20
วันที่เผยแพร่ 2019-09-20
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา rundgongdev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ask Historians Comment Helper",
    "version": "1.0.2",
    "description": "Ask Historians Comment Helper",
    "icons": {
        "64": "icons\/ah-64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/",
                "*:\/\/*.reddit.com\/hot\/",
                "*:\/\/*.reddit.com\/new\/",
                "*:\/\/*.reddit.com\/rising\/",
                "*:\/\/*.reddit.com\/controversial\/",
                "*:\/\/*.reddit.com\/top\/",
                "*:\/\/*.reddit.com\/gilded\/",
                "*:\/\/*.reddit.com\/r\/askhistorians\/*",
                "*:\/\/*.reddit.com\/r\/AskHistorians\/*",
                "*:\/\/*.reddit.com\/r\/popular\/",
                "*:\/\/*.reddit.com\/r\/Popular\/",
                "*:\/\/*.reddit.com\/r\/all\/",
                "*:\/\/*.reddit.com\/r\/All\/"
            ],
            "js": [
                "purify.min.js",
                "common_functions.js",
                "ask_historians_comment_helper.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.reddit.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/ah-64.png",
        "default_title": "AH",
        "default_popup": "popup\/ask_historians_popup.html"
    },
    "background": {
        "scripts": [
            "common_functions.js",
            "background_script.js"
        ]
    }
}