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是由mauricio.schmaedeck开发的Chrome扩展程序,该扩展的主要功能是“This extension creates a button at the top of the reports page to mark them as read.”。

扩展截图

screenshot

下载Travian Mark as Read at Top扩展crx文件

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