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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add formatting to selected text in a Google Spreadsheets cell, writing it to the cell as HTML with non-ASCII encoded."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CellHTML एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}