CellHTML

Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.

CellHTML란 무엇입니까?

CellHTML은(는) Chris Kirk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded."입니다.

확장 프로그램 스크린샷

screenshot

CellHTML 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 CellHTML CellHTML
ID dgpamfflfpcgpfodabneljmlhnodekne
공식 URL https://chromewebstore.google.com/detail/cellhtml/dgpamfflfpcgpfodabneljmlhnodekne
설명 Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded.
파일 크기 472 KB
설치 횟수 27
현재 버전 1.1.2
최근 업데이트 2015-01-05
출시 날짜 2015-01-05
평점 4.00/5 총 1 개의 평점
개발자 Chris Kirk
결제 유형 free
지원되는 언어 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"
    }
}