Write, test, share
How to start coding
1. Create a JS/TS file
function init() {
// This function is called when the plugin is loaded
// There is no guarantee as to when exactly the plugin will be loaded at startup
}2. Create a manifest file
{
"id": "my-plugin",
"name": "My Plugin",
"version": "1.0.0",
"manifestURI": "",
"language": "typescript",
"type": "plugin",
"description": "An example plugin",
"author": "Seanime",
"icon": "",
"website": "",
"lang": "multi",
"payloadURI": "C:/path/to/my-plugin/code.ts",
"plugin": {
"version": "1",
"permissions": {}
},
"isDevelopment": true
}3. Quick overview
a. Permissions
b. Hooks
c. UI Context
d. Javascript restrictions
Store
e. Types
4. Write and test
Code the extension
APIsUIHooksTest it live
5. Share
Last updated