Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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"
}
}