Matisa

This extension allows Isabelle math syntax on GitHub to be appropriately typeset.

什麼是Matisa?

Matisa是由pfribeiro開發的Chrome擴展程式,該擴展的主要功能是“This extension allows Isabelle math syntax on GitHub to be appropriately typeset.”。

擴展截圖

screenshot

下載Matisa擴展crx文件

下載Matisa擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension parses Isabelle syntax on GitHub and renders it using MathJax. This is currently a beta version, example available at: https://github.com/isabelle-utp/utp-main/tree/shallow.2016/utp

Changelog:

Version 1.0.6 (Current):
- Improved detection logic of Isabelle repositories by using the GitHub API when the extension cannot safely determine this.

Version 1.0.5:
- Fix for version display.

Version 1.0.4:
- Improved compatibility with Firefox.
- Optimized extension code.
- Fixed \ command.

Version 1.0.3:
- Reduced extension size down to 2.3MiB (size unzipped) by using closure and minimizing the MathJax library.
- Updated parser's rules to deal with nested subscripts and escaping of underscores.
- Optimized extension loading logic to be portable.

Version 1.0.2:
- Added missing file.

Version 1.0.1:
- Initial Chrome web store release.                    

擴展基本資訊

名稱 Matisa Matisa
ID jkpdfeicbjekckenhpippdllibmbcinf
官方網址 https://chromewebstore.google.com/detail/matisa/jkpdfeicbjekckenhpippdllibmbcinf
簡介 This extension allows Isabelle math syntax on GitHub to be appropriately typeset.
檔案大小 1.38 MB
安裝次數 28
目前版本 1.0.6
更新時間 2016-08-28
上架時間 2016-08-28
評分 5.00/5 共 3 次評分
開發者 pfribeiro
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Matisa",
    "description": "This extension allows Isabelle math syntax on GitHub to be appropriately typeset.",
    "version": "1.0.6",
    "browser_action": {
        "default_icon": "matisa128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "matisa16.png",
        "128": "matisa128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "eventPage.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "MathJax.js",
        "config\/*",
        "extensions\/*",
        "fonts\/*",
        "jax\/*",
        "localization\/*",
        "matisa.js",
        "config.js",
        "isabellesyntax.js"
    ],
    "permissions": [
        "*:\/\/github.com\/*"
    ]
}