Instant Syntax

This extension will highlight the code syntax of any highlighted text

Co to jest Instant Syntax?

Instant Syntax to rozszerzenie Chrome opracowane przez Salvador Gutierrez, a jego główną funkcją jest „This extension will highlight the code syntax of any highlighted text”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Instant Syntax

Pobierz pliki rozszerzeń Instant Syntax w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension allows you to perform code syntax highlighting anywhere in a webpage. Supports Java, Markup Languages , CSS, C-like languages, C#, C++,Python, SQL,PHP and JavaScript. 

How to use: 
1)Simply highlight the code whose syntax you wish to highlight.
2)Press action-button on toolbar and select language. 
3)Watch the code magically become much more readable.                    

Podstawowe informacje o rozszerzeniu

Nazwa Instant Syntax Instant Syntax
ID gjoffkgdelmaodajhoncmleiamifdcgi
Oficjalny URL https://chrome.google.com/webstore/detail/instant-syntax/gjoffkgdelmaodajhoncmleiamifdcgi
Opis This extension will highlight the code syntax of any highlighted text
Rozmiar pliku 75.37 KB
Liczba instalacji 162
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-03-02
Data Publikacji 2014-03-02
Ocena 4.50/5 Łącznie 12 Oceny
Deweloper Salvador Gutierrez
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Syntax",
    "description": "This extension will highlight the code syntax of any highlighted text",
    "version": "1.1",
    "author": "Salvador Gutierrez",
    "background": {
        "css": [
            "popup_style.css"
        ],
        "scripts": [
            "simpleInsert.js"
        ],
        "persistent": false
    },
    "icons": {
        "38": "icon_38.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon_38.png"
    }
}