Reason Tools

Adds Reason to the browser

Reason Tools란 무엇입니까?

Reason Tools은(는) Ricky V에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds Reason to the browser"입니다.

확장 프로그램 스크린샷

screenshot

Reason Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Reason in the browser. This extension will help you work with ReasonML as a way to convert between re, ml, rei, and mli text. Highlight some code and open the extension by clicking the icon or pressing Alt+D

========

New in 0.3.2

Bug fix for signature printing in OCaml doc pages. Reduce large bloat in JS files by a few MB.

========

New in 0.3.0

Pulls in the new 3.0.0 syntax for Reason. https://github.com/facebook/reason/tree/3.0.0. We've enabled this syntax by default, but will be supporting cross-version refmting for at least the next month. 

This also switches to some vendored refmt.js files, and could very well introduce some new bugs. If you notice anything, please report on the GitHub page so we can get things fixed quickly!

========

New in 0.0.21

alt+l will now toggle between .re and .rei files on Github and other source control sites.
Bug fixes, support for reason-react 0.2.3.

========

New in 0.0.19

Bug fix with failed page conversions.

========

New in 0.0.18

Uses: OCaml 4.02.3, Reason 1.13.0
More robust system for blacklisting/whitelisting problematic pages (accessible through context menu).
You can now set syntax for refmt to format same syntax or across syntaxes.
Bug fixes:
 - Layout issues on Safari

========

New in 0.0.17

Uses: OCaml 4.02.3, Reason 1.10.2
Error messages in popup now include line and col numbers, as well as any error messages we can get.
Hovering over language hints in the popup now gives you version info.
Bug fixes:
 - Made launching popup more consistent - sometimes popup would fail to initialize when trying to parse text with syntax errors.

========

New in 0.0.15

Awesome new contributions by @glennsl!
Context menu now has the ability to inline Refmt changes and toggle page styles. New version of Reason. Better support for URL linking and for https://reasonml.github.io/reason-tools/popup.html

========

New in 0.0.13

Fixes rendering of code blocks documentation that aren't explicitly mli signatures. Stores your last value refmt between popup openings.

========

New in 0.0.12

Fixes extra scrollbars in Windows and OSX when persistent scrollbars are on.

========

New in 0.0.11

Fixes issue that categorizes nim website as ocamldoc.

========

New in 0.0.10

Bug fix for scrollable area with lots of content in the popup.

========

New in 0.0.9

You're now able to break away a refmt session into a new tab with the current content.

========

New in 0.0.7

Now tracking the master branch (1.4.0) of Reason.

========

New in 0.0.6 - automatic detection and conversion of OCaml documentation pages. Will convert to reason and style consistently across domains. Allows for conversion back and forth between Reason and OCaml and includes an escape hatch to revert back to the page in the case that detection is off.                    

확장 프로그램 기본 정보

이름 Reason Tools Reason Tools
ID kmdelnjbembbiodplmhgfjpecibfhadd
공식 URL https://chromewebstore.google.com/detail/reason-tools/kmdelnjbembbiodplmhgfjpecibfhadd
설명 Adds Reason to the browser
파일 크기 818 KB
설치 횟수 498
현재 버전 0.3.2
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 4.69/5 총 13 개의 평점
개발자 Ricky V
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/reasonml/reason-tools
도움말 페이지 URL https://github.com/reasonml/reason-tools/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reason Tools",
    "description": "Adds Reason to the browser",
    "icons": {
        "19": "logo19.png",
        "38": "logo38.png",
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "Background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "logo19.png",
            "38": "logo38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Reason Tools"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "ContentLoader.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "commands": {
        "toggle_between_interface_and_implementation": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Toggle between interface and implementation files"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+D"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "ocamlDoc.css",
        "logo128.png",
        "ocamlLogo128.png"
    ],
    "version": "0.3.2"
}