Travian Mark as Read at Top
This extension creates a button at the top of the reports page to mark them as read.
Hvad er Travian Mark as Read at Top?
Travian Mark as Read at Top er en Chrome-udvidelse udviklet af mauricio.schmaedeck, og dens hovedfunktion er "This extension creates a button at the top of the reports page to mark them as read.".
Udvidelsesskærmbilleder
Download Travian Mark as Read at Top-udvidelses-CRX-fil
Download Travian Mark as Read at Top-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Simple extension to create a button to mark reports as read at the top of the page (Travian) Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mnbgdlhdbebmpkminblfhgddfljenclo |
| Officiel URL | https://chromewebstore.google.com/detail/travian-mark-as-read-at-t/mnbgdlhdbebmpkminblfhgddfljenclo |
| Beskrivelse | This extension creates a button at the top of the reports page to mark them as read. |
| Filstørrelse | 19.9 KB |
| Antal Installationer | 43 |
| Nuværende Version | 1.2 |
| Senest Opdateret | 2017-05-21 |
| Udgivelsesdato | 2017-05-21 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | mauricio.schmaedeck |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
]
} | |