Colab Spellcheck

Check your spelling in Google Colab!

Colab Spellcheck क्या है?

Colab Spellcheck Marten Thompson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check your spelling in Google Colab!"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Colab Spellcheck एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension spellchecks markdown cells in notebooks open in Google Colab, perfect for proofreading your homework, presentations, or notes. 

Note that it uses GrammarBot to do most of the heavy lifting, and you can get a limited-use key for free (no credit card required). Please perform the following setup to use this extension:

** FIRST TIME SET-UP **
1. Add this extension to Chrome
2. Sign up for GrammarBot at https://www.grammarbot.io/signup
3. Copy your GrammarBot API key 
4. In this extension, go to Settings and paste your key; click Save
5. Done!

** DIRECTIONS FOR USE **
After completing the set-up above, you're ready to go! Just:
1. Open your Python notebook in Colab
2. Click on a text/markdown cell to make it active
3. Click on this extension, then click "Check Active Cell"
4. If present, any misspelled words in this cell will appear below the button with suggestions

Thank you for your interest.                    

एक्सटेंशन की मूल जानकारी

नाम Colab Spellcheck Colab Spellcheck
ID ibnfomklkmoocmbmjlddagkippmndioc
आधिकारिक URL https://chromewebstore.google.com/detail/colab-spellcheck/ibnfomklkmoocmbmjlddagkippmndioc
विवरण Check your spelling in Google Colab!
फ़ाइल का आकार 450 KB
स्थापना संख्या 330
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2022-01-13
प्रकाशन तिथि 2021-11-29
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर Marten Thompson
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/MartenThompson/colab_spellcheck
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Colab Spellcheck",
    "description": "Check your spelling in Google Colab!",
    "version": "0.1.2",
    "icons": {
        "16": "images\/app_icon_16.png",
        "32": "images\/app_icon_32.png",
        "48": "images\/app_icon_48.png",
        "128": "images\/app_icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/app_icon_16.png",
            "24": "images\/app_icon_24.png",
            "32": "images\/app_icon_32.png"
        },
        "default_title": "colab spellcheck",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}