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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}