Crossdart Chrome Extension

Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github

Crossdart Chrome Extension란 무엇입니까?

Crossdart Chrome Extension은(는) https://crossdart.info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Crossdart Chrome Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds hyperlinks to your Dart code on Github. You'll be able to click to the methods, variables or classes and go to their definitions, and also click to the declarations to find out where they are used at. It works both for tree views and pull requests, so whenever someone sends you a pull request, you'll be able to review it more efficiently, since you actually can click to the methods and see where they come from.

You can check https://github.com/astashov/crossdart-chrome-extension for README, source code and details how to use it for very private projects, when you don't want to send your source code to CrossDart servers, but still want to use the plugin.                    

확장 프로그램 기본 정보

이름 Crossdart Chrome Extension Crossdart Chrome Extension
ID jmdjoliiaibifkklhipgmnciiealomhd
공식 URL https://chromewebstore.google.com/detail/crossdart-chrome-extensio/jmdjoliiaibifkklhipgmnciiealomhd
설명 Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github
파일 크기 24.83 KB
설치 횟수 45
현재 버전 0.3.0
최근 업데이트 2016-06-06
출시 날짜 2016-06-06
평점 5.00/5 총 2 개의 평점
개발자 https://crossdart.info
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/astashov/crossdart-chrome-extension
도움말 페이지 URL https://github.com/astashov/crossdart-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crossdart Chrome Extension",
    "version": "0.3.0",
    "description": "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github",
    "author": "Anton Astashov",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "page_action": {
        "default_icon": "icon38.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "constants.js",
                "utils.js",
                "path.js",
                "errors.js",
                "status.js",
                "request.js",
                "tooltip.js",
                "github.js",
                "github\/tree_path.js",
                "github\/pull_path.js",
                "crossdart\/pull.js",
                "crossdart\/tree.js",
                "location_change_detector.js",
                "crossdart.js"
            ],
            "css": [
                "crossdart.css",
                "tooltip.css"
            ]
        }
    ]
}