Travian Mark as Read at Top

This extension creates a button at the top of the reports page to mark them as read.

Vad är Travian Mark as Read at Top?

Travian Mark as Read at Top är en Chrome-tillägg utvecklad av mauricio.schmaedeck, och dess huvudfunktion är "This extension creates a button at the top of the reports page to mark them as read.".

Tilläggsskärmbilder

screenshot

Ladda ner Travian Mark as Read at Top-förlängningens CRX-fil

Ladda ner Travian Mark as Read at Top-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Simple extension to create a button to mark reports as read at the top of the page (Travian)                    

Grundläggande Information om Tillägg

Namn Travian Mark as Read at Top Travian Mark as Read at Top
ID mnbgdlhdbebmpkminblfhgddfljenclo
Officiell webbadress https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo
Beskrivning This extension creates a button at the top of the reports page to mark them as read.
Filstorlek 19.9 KB
Antal Installationer 43
Aktuell Version 1.2
Senast Uppdaterad 2017-05-21
Publiceringsdatum 2017-05-21
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare mauricio.schmaedeck
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}