TubeArchivist Companion
Interact with your selfhosted TA server.
Cos'è TubeArchivist Companion?
TubeArchivist Companion è un'estensione di Chrome sviluppata da simobilleter, e la sua funzione principale è "Interact with your selfhosted TA server.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TubeArchivist Companion
Scarica i file di estensione TubeArchivist Companion in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Automatically send links from your Browser to Tube Archivist. Informazioni di Base sull'Estensione
| Nome | |
| ID | jjnkmicfnfojkkgobdfeieblocadmcie |
| URL Ufficiale | https://chromewebstore.google.com/detail/tubearchivist-companion/jjnkmicfnfojkkgobdfeieblocadmcie |
| Descrizione | Interact with your selfhosted TA server. |
| Dimensione del File | 44.56 KB |
| Conteggio Installazioni | 1,665 |
| Versione Corrente | 0.2.2 |
| Ultimo Aggiornamento | 2023-11-10 |
| Data di Pubblicazione | 2022-04-27 |
| Valutazione | 5.00/5 Totale 7 Valutazioni |
| Sviluppatore | simobilleter |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/tubearchivist/browser-extension |
| URL della Pagina di Aiuto | https://github.com/tubearchivist/browser-extension |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "TubeArchivist Companion",
"description": "Interact with your selfhosted TA server.",
"version": "0.2.2",
"icons": {
"48": "\/images\/icon.png",
"128": "\/images\/icon128.png"
},
"action": {
"default_popup": "index.html"
},
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"https:\/\/*.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
]
}
],
"background": {
"service_worker": "background.js"
}
} | |