Text to Image
This extension replaces text urls that link to images with the actual images inline.
Co je Text to Image?
Text to Image je rozšíření Chrome vyvinuté https://www.resolutedreamer.com, a jeho hlavní funkcí je „This extension replaces text urls that link to images with the actual images inline.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Text to Image
Stáhněte si soubory rozšíření Text to Image ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Text to Image |
ID | lpjgbeojljepdicbkcblehdglogbceck |
Oficiální URL | https://chromewebstore.google.com/detail/text-to-image/lpjgbeojljepdicbkcblehdglogbceck |
Popis | This extension replaces text urls that link to images with the actual images inline. |
Velikost souboru | 3.75 KB |
Počet instalací | 40 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2016-08-25 |
Datum Vydání | 2016-08-25 |
Hodnocení | 4.00/5 Celkem 2 Hodnocení |
Vývojář | https://www.resolutedreamer.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } ] } |