CellHTML
Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.
O que é CellHTML?
CellHTML é uma extensão do Chrome desenvolvida por Chris Kirk, e sua principal característica é "Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CellHTML
Baixe arquivos de extensão CellHTML 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
The CellHTML extension makes it easier to use Google Spreadsheets to store formatted text as HTML. When editing a cell, press cmd + / (slash) to edit the cell in rich text. Now you can make selections of text bold, italicized, underlined, or hyperlinked. Press cmd + / or click the "Submit" button to write the changes to the cell. Press the escape key or click the "x" button to cancel. Formatted selections will now be enclosed in the appropriate HTML tags. Non-ASCII characters will also be encoded. Then, press the "enter" key to save the cell.
Informações Básicas da Extensão
Nome | CellHTML |
ID | dgpamfflfpcgpfodabneljmlhnodekne |
URL Oficial | https://chromewebstore.google.com/detail/cellhtml/dgpamfflfpcgpfodabneljmlhnodekne |
Descrição | Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded. |
Tamanho do Arquivo | 472 KB |
Contagem de Instalações | 27 |
Versão Atual | 1.1.2 |
Última Atualização | 2015-01-05 |
Data de Publicação | 2015-01-05 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | Chris Kirk |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CellHTML", "version": "1.1.2", "description": "Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/spreadsheets\/*", "https:\/\/docs.google.com\/spreadsheet\/*" ], "js": [ "jquery.js", "cellHTML.js", "lib\/notebook\/jquery.notebook.js", "lib\/he.js" ], "css": [ "cellHTML.css", "font-awesome\/font-awesome.css", "lib\/notebook\/jquery.notebook.css" ] } ], "permissions": [ "https:\/\/docs.google.com\/spreadsheets\/*", "https:\/\/docs.google.com\/spreadsheet\/*" ], "page_action": { "default_popup": "popup.html", "default_icon": "icons\/icon19.png" }, "web_accessible_resources": [ "font-awesome\/fonts\/fontawesome-webfont.woff" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |