Text to Image
This extension replaces text urls that link to images with the actual images inline.
Cos'è Text to Image?
Text to Image è un'estensione di Chrome sviluppata da https://www.resolutedreamer.com, e la sua funzione principale è "This extension replaces text urls that link to images with the actual images inline.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Text to Image
Scarica i file di estensione Text to Image 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
Version 1.1.1: Fixed bug where all text in an element would get overwritten instead of only the url for the image. Added a line break before the image for readability. Removed debug messages from console.
Version 1.0: Basic functionality Informazioni di Base sull'Estensione
| Nome | |
| ID | lpjgbeojljepdicbkcblehdglogbceck |
| URL Ufficiale | https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck |
| Descrizione | This extension replaces text urls that link to images with the actual images inline. |
| Dimensione del File | 3.75 KB |
| Conteggio Installazioni | 40 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2016-08-25 |
| Data di Pubblicazione | 2016-08-25 |
| Valutazione | 4.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://www.resolutedreamer.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Text to Image",
"description": "This extension replaces text urls that link to images with the actual images inline.",
"version": "1.1.1",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |