Syntax Highlight Code Blocks

Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.

Τι είναι το Syntax Highlight Code Blocks;

Το Syntax Highlight Code Blocks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mackenzie Zastrow, και η κύρια λειτουργία του είναι "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Syntax Highlight Code Blocks

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

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

                        Some blogs/websites just put snippets of code inside of a pre > code block without syntax highlighting.  This is alright, but for developers reading the code, it would be helpful if it actually included syntax highlighting.  This extension, on activation via the context menu, finds all pre > code blocks an highlights them with highlight.js (https://highlightjs.org/).

Icons from Simple Icon (http://simpleicon.com/code-optimization.html) and Iconspedia (http://www.iconspedia.com/icon/source-code-icon-22943.html)

 - Version 1.4 adds support for converting multiline pres (w/no code block)
 - Version 1.3 adds support for msdn.microsoft.com magazine code snippets
 - Version 1.2 adds support for msdn.microsoft.com library simple code snippets                    

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

Όνομα Syntax Highlight Code Blocks Syntax Highlight Code Blocks
ID hpoobjomnbgfehbigjdghibjddfpoigp
Επίσημο URL https://chromewebstore.google.com/detail/syntax-highlight-code-blo/hpoobjomnbgfehbigjdghibjddfpoigp
Περιγραφή Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.
Μέγεθος Αρχείου 24.75 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2015-05-07
Ημερομηνία Δημοσίευσης 2015-05-07
Αξιολόγηση 3.25/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Mackenzie Zastrow
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/zastrowm/Syntax-Highlight-Code-Blocks
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Syntax Highlight Code Blocks",
    "version": "1.4",
    "description": "Adds a context menu that provides the ability to add syntax hightlighting to code blocks contained in the page.",
    "author": "Mackenzie Zastrow",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}