VxTwitter URL
Converts twitter.com URLs to VXTwitter URLS when copying them.
Cos'è VxTwitter URL?
VxTwitter URL è un'estensione di Chrome sviluppata da potatoswedish, e la sua funzione principale è "Converts twitter.com URLs to VXTwitter URLS when copying them.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VxTwitter URL
Scarica i file di estensione VxTwitter URL 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
Usage: * Share -> Copy Link on a tweet will automatically convert the link to vxtwitter (English only). Extra features - * Ctrl + C will convert the current clipboard's twitter/x url to vxtwitter. * Ctrl + Q will do the same but add || to the beginning and end (for discord spoiler)
Informazioni di Base sull'Estensione
Nome | VxTwitter URL |
ID | bdioigkngoclklbmmgegppmmekffpgdh |
URL Ufficiale | https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh |
Descrizione | Converts twitter.com URLs to VXTwitter URLS when copying them. |
Dimensione del File | 14.5 KB |
Conteggio Installazioni | 312 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2024-01-12 |
Data di Pubblicazione | 2023-12-11 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | potatoswedish |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "VxTwitter URL", "version": "1.3", "description": "Converts twitter.com URLs to VXTwitter URLS when copying them.", "icons": { "96": "icon-96.png", "48": "icon-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/i\/tweetdeck" ], "js": [ "appTweetDeck.js" ] }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*" ], "js": [ "appTwitter.js" ] } ], "permissions": [ "clipboardRead", "clipboardWrite" ] } |