- pdf-editor 0.1.1 → 0.1.2: manifest.icon is a data:image/svg+xml red PDF document badge (dock renders it as <img>). Same on toolbar-menu.icon. Item-level icons dropped — those go through the native OS menu that doesn't render data URIs. - translate 0.1.0 → 0.1.1: default LibreTranslate mirror was translate.argosopentech.com, which is now a dead domain — panel just said "Failed" on every request. Switched default to translate.disroot.org (currently up), added a datalist of known mirrors, and a one-shot migration off the dead default so existing installs recover on next load. - docx-editor 0.1.0 → 0.1.1: manifest.icon is a data:image/svg+xml blue DOC document badge, index.js no longer overrides it with 📝, and the panel header uses the same inline SVG. Same rationale as pdf-editor — every extension was rendering as either 📄 or 📝, so PDF and Word were visually identical to the Notepad.
19 lines
569 B
JSON
19 lines
569 B
JSON
{
|
|
"id": "translate",
|
|
"name": "Translate",
|
|
"version": "0.1.1",
|
|
"description": "Right-click a selection to translate it. Sidebar panel with LibreTranslate or Google as the backend.",
|
|
"author": "Silent Mode",
|
|
"icon": "🌐",
|
|
"main": "index.js",
|
|
"capabilities": ["sidebar-panel", "context-menu-item"],
|
|
"context-menu-items": [
|
|
{
|
|
"id": "translate-selection",
|
|
"label": "Translate selection",
|
|
"when": "selectionText",
|
|
"icon": "🌐"
|
|
}
|
|
],
|
|
"updateURL": "https://navigate.st/bns/theseus.x/extensions/translate/updates.json"
|
|
}
|