Travian Mark as Read at Top

This extension creates a button at the top of the reports page to mark them as read.

Travian Mark as Read at Topคืออะไร?

Travian Mark as Read at Top เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mauricio.schmaedeck และคุณลักษณะหลักของมันคือ "This extension creates a button at the top of the reports page to mark them as read."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Travian Mark as Read at Top

ดาวน์โหลดไฟล์ส่วนขยาย Travian Mark as Read at Top ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Simple extension to create a button to mark reports as read at the top of the page (Travian)                    

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

ชื่อ Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
คำอธิบาย This extension creates a button at the top of the reports page to mark them as read.
ขนาดไฟล์ 19.9 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-05-21
วันที่เผยแพร่ 2017-05-21
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา mauricio.schmaedeck
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Travian Mark as Read at Top",
    "description": "This extension creates a button at the top of the reports page to mark them as read.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "*:\/\/tx3.travian.com.br\/berichte.php"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tx3.travian.com.br\/berichte.php*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}