TubeArchivist Companion
Interact with your selfhosted TA server.
Wat is TubeArchivist Companion?
TubeArchivist Companion is een Chrome-extensie ontwikkeld door simobilleter, en de belangrijkste functie is "Interact with your selfhosted TA server.".
Extensie Screenshots
Download het CRX-bestand van de extensie TubeArchivist Companion
Download TubeArchivist Companion-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Automatically send links from your Browser to Tube Archivist. Basisinformatie over de Extensie
| Naam | |
| ID | jjnkmicfnfojkkgobdfeieblocadmcie |
| Officiële URL | https://chromewebstore.google.com/detail/tubearchivist-companion/jjnkmicfnfojkkgobdfeieblocadmcie |
| Beschrijving | Interact with your selfhosted TA server. |
| Bestandsgrootte | 44.56 KB |
| Aantal Installaties | 1,665 |
| Huidige Versie | 0.2.2 |
| Laatst Bijgewerkt | 2023-11-10 |
| Publicatiedatum | 2022-04-27 |
| Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | simobilleter |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/tubearchivist/browser-extension |
| Help Pagina-URL | https://github.com/tubearchivist/browser-extension |
| Ondersteunde Talen | 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"
}
} | |