LiTags

LiTags enables you to assign tags to players on lichess.org.

Τι είναι το LiTags;

Το LiTags είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mathias Punkenhofer, και η κύρια λειτουργία του είναι "LiTags enables you to assign tags to players on lichess.org.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LiTags

Λήψη αρχείων επέκτασης LiTags σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Did you ever want a remainder that your opponent plays for time, plays aggressively or defensively ? LiTags gives you the possibility to assign icons to your opponents which show up when you face them. Just click the plus icon next to your opponents username to bring up a popup where you can choose / search for a fitting tag. By clicking and dragging you can change the order of tags in a users tag list as well as remove tags.

This extension comes with extensive customization support in its options:
- add, edit, delete tags and sets
- view all users you have assigned tags to and edit tags you assigned them
- import, backup all extension data
- export tag sets and share them with others
- general settings

You want to contribute to LiTags? Awesome! Check out the extension on github at https://github.com/mpunkenhofer/litags

I am not affiliated in any way with lichess.org.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LiTags LiTags
ID nlboefdopbngegiihopmjfndjojcblmf
Επίσημο URL https://chromewebstore.google.com/detail/litags/nlboefdopbngegiihopmjfndjojcblmf
Περιγραφή LiTags enables you to assign tags to players on lichess.org.
Μέγεθος Αρχείου 442 KB
Αριθμός Εγκαταστάσεων 77
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2021-06-15
Ημερομηνία Δημοσίευσης 2020-04-28
Αξιολόγηση 3.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Mathias Punkenhofer
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mpunkenhofer/litags
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mpunkenhofer/litags/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LiTags",
    "description": "__MSG_appDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "https:\/\/api.imgur.com\/3\/upload"
    ],
    "icons": {
        "48": "assets\/images\/litags_icon48.png",
        "96": "assets\/images\/litags_icon96.png",
        "128": "assets\/images\/litags_icon128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "assets\/images\/litags_icon16.png",
            "32": "assets\/images\/litags_icon32.png",
            "48": "assets\/images\/litags_icon48.png",
            "96": "assets\/images\/litags_icon96.png",
            "128": "assets\/images\/litags_icon128.png"
        }
    },
    "commands": {
        "toggle-tag-chooser-popup": {
            "description": "__MSG_shortcutToggleDescription__"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.lichess.org\/*",
                "https:\/\/*.lichess.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/fonts\/lichess-tags.woff2",
        "assets\/images\/lichess_icon512.png",
        "assets\/images\/tag-solid.svg",
        "options.html"
    ],
    "version": "1.1.4",
    "homepage_url": "https:\/\/github.com\/mpunkenhofer\/litags"
}