Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
Cos'è Wrapper Bot?
Wrapper Bot è un'estensione di Chrome sviluppata da Jay Bats, e la sua funzione principale è "A Chrome extension for easily wrapping selected text in custom defined HTML templates.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Wrapper Bot
Scarica i file di estensione Wrapper Bot 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
Wrapper Bot allows you to wrap your text selections in custom HTML wrappers. This way, you can easily apply often used stylings without having to manually type the HTML over and over again.
Informazioni di Base sull'Estensione
Nome | Wrapper Bot |
ID | omnmbcgclimiokggjlaljacckoaieagi |
URL Ufficiale | https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi |
Descrizione | A Chrome extension for easily wrapping selected text in custom defined HTML templates. |
Dimensione del File | 154 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-05-29 |
Data di Pubblicazione | 2014-05-29 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Jay Bats |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wrapper Bot", "version": "1.0", "manifest_version": 2, "description": "A Chrome extension for easily wrapping selected text in custom defined HTML templates.", "browser_action": { "default_icon": "icon-16.png", "default_popup": "popup.html" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.9.1-min.js", "content.js" ] } ] } |