VxTwitter URL
Converts twitter.com URLs to VXTwitter URLS when copying them.
Wat is VxTwitter URL?
VxTwitter URL is een Chrome-extensie ontwikkeld door potatoswedish, en de belangrijkste functie is "Converts twitter.com URLs to VXTwitter URLS when copying them.".
Extensie Screenshots
Download het CRX-bestand van de extensie VxTwitter URL
Download VxTwitter URL-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
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)
Basisinformatie over de Extensie
Naam | VxTwitter URL |
ID | bdioigkngoclklbmmgegppmmekffpgdh |
Officiële URL | https://chromewebstore.google.com/detail/vxtwitter-url/bdioigkngoclklbmmgegppmmekffpgdh |
Beschrijving | Converts twitter.com URLs to VXTwitter URLS when copying them. |
Bestandsgrootte | 14.5 KB |
Aantal Installaties | 312 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2024-01-12 |
Publicatiedatum | 2023-12-11 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | potatoswedish |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |