Gist Previewer

Preview gist html/js/css code.

Gist Previewer क्या है?

Gist Previewer David Orr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preview gist html/js/css code."।

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

screenshot
screenshot

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

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

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

                        Renders Gist repos that contain HTML, JavaScript, or CSS files.

Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.                    

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

नाम Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
आधिकारिक URL https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
विवरण Preview gist html/js/css code.
फ़ाइल का आकार 11.01 KB
स्थापना संख्या 92
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2017-04-03
प्रकाशन तिथि 2017-04-02
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर David Orr
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/davidyorr/gist-previewer
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Previewer",
    "description": "Preview gist html\/js\/css code.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/gistpreviewer.js"
            ],
            "css": [
                "css\/gistpreviewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2
}