MSDN Magazine code highlighter

Automatically detects and highlights code on MSDN Magazine articles

MSDN Magazine code highlighter là gì?

MSDN Magazine code highlighter là một tiện ích mở rộng Chrome được phát triển bởi @martani_net, và tính năng chính của nó là "Automatically detects and highlights code on MSDN Magazine articles".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MSDN Magazine code highlighter

Tải xuống các tệp mở rộng MSDN Magazine code highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        MSDN Magazine code highlighter: automatically detects and highlights code on MSDN Magazine articles.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MSDN Magazine code highlighter MSDN Magazine code highlighter
ID aeiijafahpaechikghdmabehfnaniief
URL Chính Thức https://chrome.google.com/webstore/detail/msdn-magazine-code-highli/aeiijafahpaechikghdmabehfnaniief
Mô tả Automatically detects and highlights code on MSDN Magazine articles
Kích Thước Tệp 127 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2015-04-29
Ngày Phát Hành 2015-04-29
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển @martani_net
Loại Thanh Toán free
Trang Web Mở Rộng http://martani.net
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MSDN Magazine code highlighter",
    "description": "Automatically detects and highlights code on MSDN Magazine articles",
    "version": "3.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "MSDN Magazine code highlighter: Click to select theme"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/msdn.microsoft.com\/*\/magazine\/*",
                "http:\/\/msdn.microsoft.com\/*\/magazine\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "highlight.pack.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/msdn.microsoft.com\/*\/magazine\/*",
                "http:\/\/msdn.microsoft.com\/*\/magazine\/*"
            ],
            "js": [
                "init.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "styles\/agate.css",
        "styles\/androidstudio.css",
        "styles\/arta.css",
        "styles\/ascetic.css",
        "styles\/atelier-dune.dark.css",
        "styles\/atelier-dune.light.css",
        "styles\/atelier-forest.dark.css",
        "styles\/atelier-forest.light.css",
        "styles\/atelier-heath.dark.css",
        "styles\/atelier-heath.light.css",
        "styles\/atelier-lakeside.dark.css",
        "styles\/atelier-lakeside.light.css",
        "styles\/atelier-seaside.dark.css",
        "styles\/atelier-seaside.light.css",
        "styles\/atelier-sulphurpool.dark.css",
        "styles\/atelier-sulphurpool.light.css",
        "styles\/brown_paper.css",
        "styles\/codepen-embed.css",
        "styles\/color-brewer.css",
        "styles\/dark.css",
        "styles\/darkula.css",
        "styles\/default.css",
        "styles\/docco.css",
        "styles\/far.css",
        "styles\/foundation.css",
        "styles\/github.css",
        "styles\/googlecode.css",
        "styles\/hybrid.css",
        "styles\/idea.css",
        "styles\/ir_black.css",
        "styles\/kimbie.dark.css",
        "styles\/kimbie.light.css",
        "styles\/magula.css",
        "styles\/mono-blue.css",
        "styles\/monokai.css",
        "styles\/monokai_sublime.css",
        "styles\/obsidian.css",
        "styles\/paraiso.dark.css",
        "styles\/paraiso.light.css",
        "styles\/pojoaque.css",
        "styles\/railscasts.css",
        "styles\/rainbow.css",
        "styles\/school_book.css",
        "styles\/solarized_dark.css",
        "styles\/solarized_light.css",
        "styles\/sunburst.css",
        "styles\/tomorrow-night-blue.css",
        "styles\/tomorrow-night-bright.css",
        "styles\/tomorrow-night-eighties.css",
        "styles\/tomorrow-night.css",
        "styles\/tomorrow.css",
        "styles\/vs.css",
        "styles\/xcode.css",
        "styles\/zenburn.css"
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}