Code Medium

Extends the Medium writer interface to quickly create and edit Github Gists, without having to leave the editor.

Code Medium क्या है?

Code Medium https://manueldellelce.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the Medium writer interface to quickly create and edit Github Gists, without having to leave the editor."।

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

screenshot
screenshot

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

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

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

                        Features
--------

- Adds a button in the text toolbar for creating a new Gist and adding it to the post.
- Gists can be created as either public or secret (unlisted).
- Double click on an existing Gist to edit or delete it.
- Deleting a gist will remove both the embed from the post and the gist from your account.
  To only remove the embed, just click on it and press the delete key as usual.
- Syntax highlighting for the most popular programming languages thanks to react-ace!
- Fixes the height of the Gists in the editor, to display them without being cut and without the extra padding (https://github.com/Maluen/code-medium/issues/3).

Authorizing the application
--------
This extension uses the GitHub Gist API to create and edit gists,
this means that you'll have to authorize the OAuth application for the "gist" permission.

Once the extension is installed, toggle the extension modal by clicking the toolbar button or by double clicking on an existing gist to
show the login button.

Known Limitations
--------

Gists composed of multiple files aren't fully supported:
- Currently, only single-file gists can be created.
- When double clicking on an existing multi-file gist, only the first file will show up in the modal.
  However, you can still edit that file normally and delete the whole gist.                    

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

नाम Code Medium Code Medium
ID dganoageikmadjocbmklfgaejpkdigbe
आधिकारिक URL https://chromewebstore.google.com/detail/code-medium/dganoageikmadjocbmklfgaejpkdigbe
विवरण Extends the Medium writer interface to quickly create and edit Github Gists, without having to leave the editor.
फ़ाइल का आकार 773 KB
स्थापना संख्या 2,525
वर्तमान संस्करण 0.5.3
अंतिम अपडेट 2022-01-11
प्रकाशन तिथि 2020-03-10
रेटिंग 4.64/5 कुल 22 रेटिंग्स
डेवलपर https://manueldellelce.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Maluen/code-medium
सहायता पृष्ठ URL https://github.com/Maluen/code-medium/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhUUr0Z4y8DxD5WIezuYeGW3zDZkvGXST+uviv4jtXwkNVZI5XTUrs\/pfYoYsOKdnrxkE47\/mI+TiumUj7buB1pC+qeWYjVEshDD5Wum6J44RhXmAo7eb1e3u+IG0BmFvQOO+ENtRxIacZ\/M8gexGRIlVWJKuRtcLREc7EkwxtWN58fPrWcYsuXfO3NDEkvrSz7hCCNgeVf\/y0MKIz7ZRje8Afb1cRa2PtVAFJ2KUFikzghNFyAY8DVmXXZzrvUDbkeKxA\/ja2+5TePhVhKBE+DpFGNUBhb1bEi+pl7ysssxFxjdwiW5\/9q58JJeh1Mcu1lnoGIVQTspcd5fbioMNNQIDAQAB",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "name": "Code Medium",
    "version": "0.5.3",
    "description": "Extends the Medium writer interface to quickly create and edit Github Gists, without having to leave the editor.",
    "icons": {
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "author": "Manuel Dell'Elce",
    "short_name": "code-medium",
    "background": {
        "page": "background\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon.png",
            "38": "assets\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/**"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/medium.com\/media\/*"
            ],
            "js": [
                "content\/content_iframe.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "app\/*.*"
    ],
    "permissions": [
        "identity",
        "storage",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ]
}