Tribalwars Millisecond Clock

Adds a millisecond clock to the tribalwars page

什么是Tribalwars Millisecond Clock?

Tribalwars Millisecond Clock是由Ryan Davis开发的Chrome扩展程序,该扩展的主要功能是“Adds a millisecond clock to the tribalwars page”。

扩展截图

screenshot
screenshot
screenshot

下载Tribalwars Millisecond Clock扩展crx文件

下载Tribalwars Millisecond Clock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension adds a clock to the side of the screen in tribal wars which includes the milliseconds, to make timing your attacks super precise! There is also an offset adjuster to ensure you get the exact right millisecond as the server time.

**Updates**
Version 3.0 - Includes support for all the tribal wars domains available from their site.                    

扩展基本信息

名称 Tribalwars Millisecond Clock Tribalwars Millisecond Clock
ID ockippfhjpjfmdkhdcjecepcleopfamm
官方URL https://chromewebstore.google.com/detail/tribalwars-millisecond-cl/ockippfhjpjfmdkhdcjecepcleopfamm
简介 Adds a millisecond clock to the tribalwars page
文件大小 8.98 KB
安装次数 1,042
当前版本 3.0
更新时间 2020-08-05
上架时间 2020-06-02
评分 4.13/5 共8次评分
开发者 Ryan Davis
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tribalwars Millisecond Clock",
    "version": "3.0",
    "description": "Adds a millisecond clock to the tribalwars page",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.die-staemme.de\/*",
                "*:\/\/*.divoke-kmene.sk\/*",
                "*:\/\/*.divokekmeny.cz\/*",
                "*:\/\/*.fyletikesmaxes.gr\/*",
                "*:\/\/*.guerrastribales.es\/*",
                "*:\/\/*.guerretribale.fr\/*",
                "*:\/\/*.klanhaboru.hu\/*",
                "*:\/\/*.klanlar.org\/*",
                "*:\/\/*.plemena.com\/*",
                "*:\/\/*.plemiona.pl\/*",
                "*:\/\/*.staemme.ch\/*",
                "*:\/\/*.tribals.it\/*",
                "*:\/\/*.tribalwars.ae\/*",
                "*:\/\/*.tribalwars.asia\/*",
                "*:\/\/*.tribalwars.co.uk\/*",
                "*:\/\/*.tribalwars.com.br\/*",
                "*:\/\/*.tribalwars.com.pt\/*",
                "*:\/\/*.tribalwars.com\/*",
                "*:\/\/*.tribalwars.dk\/*",
                "*:\/\/*.tribalwars.net\/*",
                "*:\/\/*.tribalwars.nl\/*",
                "*:\/\/*.tribalwars.se\/*",
                "*:\/\/*.tribalwars.us\/*",
                "*:\/\/*.tribalwars.works\/*",
                "*:\/\/*.triburile.ro\/*",
                "*:\/\/*.vojnaplemen.si\/*",
                "*:\/\/*.voyna-plemyon.ru\/*"
            ],
            "css": [
                "myStyles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}