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