TEC Extender
Extensions and goodies for The Eternal City
TEC Extender란 무엇입니까?
TEC Extender은(는) jeffdalley에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extensions and goodies for The Eternal City"입니다.
확장 프로그램 스크린샷
TEC Extender 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |