Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
Wat is Wrapper Bot?
Wrapper Bot is een Chrome-extensie ontwikkeld door Jay Bats, en de belangrijkste functie is "A Chrome extension for easily wrapping selected text in custom defined HTML templates.".
Extensie Screenshots
Download het CRX-bestand van de extensie Wrapper Bot
Download Wrapper Bot-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
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.
Basisinformatie over de Extensie
Naam | Wrapper Bot |
ID | omnmbcgclimiokggjlaljacckoaieagi |
Officiële URL | https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi |
Beschrijving | A Chrome extension for easily wrapping selected text in custom defined HTML templates. |
Bestandsgrootte | 154 KB |
Aantal Installaties | 38 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-05-29 |
Publicatiedatum | 2014-05-29 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Jay Bats |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |