HTML for Basecamp
Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.
O que é HTML for Basecamp?
HTML for Basecamp é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão HTML for Basecamp
Baixe arquivos de extensão HTML for Basecamp no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
We started working on Basecamp and I needed to add some basic formatting to the text of the tasks and found it almost imposible with the current editor. When I found you could paste form another source some html formatted content I decided to venture myself into making a little extension to allow html insertion directly.
Informações Básicas da Extensão
Nome | HTML for Basecamp |
ID | kmnmhcolnmikliggbninabbbiboanocj |
URL Oficial | https://chromewebstore.google.com/detail/html-for-basecamp/kmnmhcolnmikliggbninabbbiboanocj |
Descrição | Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor. |
Tamanho do Arquivo | 43.82 KB |
Contagem de Instalações | 47 |
Versão Atual | 0.1 |
Última Atualização | 2012-10-23 |
Data de Publicação | 2012-10-23 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "HTML for Basecamp", "version": "0.1", "manifest_version": 2, "description": "Simple extension to allow typing html directly into the editor instead of using the wysiwyg editor.", "icons": { "128": "icon.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/basecamp.com\/*" ], "js": [ "jquery.js", "go.js", "resize.js" ], "css": [ "style.css" ] } ] } |