Crossdart Chrome Extension

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

Crossdart Chrome Extensionคืออะไร?

Crossdart Chrome Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://crossdart.info และคุณลักษณะหลักของมันคือ "Adds 'Go to definition' and 'Find Usages' functionality for Dart packages on Github"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crossdart Chrome Extension

ดาวน์โหลดไฟล์ส่วนขยาย Crossdart Chrome Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}