Highlight to Hilite.me

This extension allows the user to highlight code to send to hilite.me

Τι είναι το Highlight to Hilite.me;

Το Highlight to Hilite.me είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://terryseidler.com, και η κύρια λειτουργία του είναι "This extension allows the user to highlight code to send to hilite.me".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Highlight to Hilite.me

Λήψη αρχείων επέκτασης Highlight to Hilite.me σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Ever found some nice code you wanted to copy to a blog post? This extension lets you select that code, right click it and run it through the hilite.me API to generate proper code highlighted HTML. 

The selected code will be copied to your clipboard, ready for use in one of your blog posts!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Highlight to Hilite.me Highlight to Hilite.me
ID iaenhklkflbfmpcafgalelagbdileikn
Επίσημο URL https://chrome.google.com/webstore/detail/highlight-to-hiliteme/iaenhklkflbfmpcafgalelagbdileikn
Περιγραφή This extension allows the user to highlight code to send to hilite.me
Μέγεθος Αρχείου 15.82 KB
Αριθμός Εγκαταστάσεων 76
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2016-03-10
Ημερομηνία Δημοσίευσης 2016-03-10
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής http://terryseidler.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/tseidler/extension-chrome-hightlight-code
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/tseidler/extension-chrome-hightlight-code/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Highlight to Hilite.me",
    "description": "This extension allows the user to highlight code to send to hilite.me",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        },
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "storage",
        "notifications",
        "http:\/\/hilite.me\/"
    ],
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selectionListener.js"
            ]
        }
    ]
}