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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mauricio.schmaedeck, και η κύρια λειτουργία του είναι "This extension creates a button at the top of the reports page to mark them as read.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Travian Mark as Read at Top
Λήψη αρχείων επέκτασης 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 |
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" } ] } |