TEC Extender

Extensions and goodies for The Eternal City

Τι είναι το TEC Extender;

Το TEC Extender είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jeffdalley, και η κύρια λειτουργία του είναι "Extensions and goodies for The Eternal City".

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

screenshot
screenshot

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

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

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

                        A collection of features to enhance your experience with the MUD: The Eternal City, using its official Orchil client. Its features are meant to be used while at the keyboard, and not meant for set and forget (AFK).

The extension adds functionality to the client such as scripts, command repeater, and some common event handling during combat and non-combat scripts. It comes with a collection of scripts you can use and reference when writing your own. Future releases will add more scripts and features!

It does not capture or send data over the wire whatsoever, the only thing it stores locally within Chrome is a copy of your scripts to save them between sessions.

Please do not rely on the extension to permanently store your scripts, as Chrome's local storage can be cleared in a number of scenarios. Be sure to back up your scripts.

You can find out more about the extension on its GitHub page: https://github.com/jdalley/tecext. It has instructions for installing the extension in Developer mode (unpackaged), if you want to play around with code changes yourself. Feel free to submit an issue if you'd like to see something fixed or added, or to check out the source code before you install it.                    

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

Όνομα TEC Extender TEC Extender
ID aegdmagbofbclblaidikleeophbplmad
Επίσημο URL https://chromewebstore.google.com/detail/tec-extender/aegdmagbofbclblaidikleeophbplmad
Περιγραφή Extensions and goodies for The Eternal City
Μέγεθος Αρχείου 578 KB
Αριθμός Εγκαταστάσεων 132
Τρέχουσα Έκδοση 2.2.9
Τελευταία Ενημέρωση 2024-02-02
Ημερομηνία Δημοσίευσης 2021-11-25
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής jeffdalley
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jdalley/tecext
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TEC Extender",
    "short_name": "tecext",
    "description": "Extensions and goodies for The Eternal City",
    "version": "2.2.9",
    "action": {
        "default_icon": "images\/icon32.png"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/client.eternalcitygame.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/client.eternalcitygame.com\/*"
            ],
            "resources": [
                "js\/content.js",
                "js\/injected.js"
            ]
        }
    ],
    "permissions": [
        "background",
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/client.eternalcitygame.com\/*"
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    }
}