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
官方網址 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"
        }
    ]
}