Insights by xs:code

xs:code - Intuitive Open Source Analysis

Insights by xs:code là gì?

Insights by xs:code là một tiện ích mở rộng Chrome được phát triển bởi https://xscode.com, và tính năng chính của nó là "xs:code - Intuitive Open Source Analysis".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Insights by xs:code

Tải xuống các tệp mở rộng Insights by xs:code 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

                        Insights by xs:code is a free extension that provides developers with open source repository analytics on Github. The extension analyzes data from multiple sources to help you identify if an open source component on Github is right for your project. Request patches, bug fixes and permissive licenses directly from the open source developer through our easy-to-use interface.                    

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

Tên Insights by xs:code Insights by xs:code
ID jajalhibgdhhfmpjmdnhoepjncieljci
URL Chính Thức https://chromewebstore.google.com/detail/insights-by-xscode/jajalhibgdhhfmpjmdnhoepjncieljci
Mô tả xs:code - Intuitive Open Source Analysis
Kích Thước Tệp 9.74 MB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 1.0.9
Cập Nhật Lần Cuối 2020-09-01
Ngày Phát Hành 2020-08-06
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://xscode.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://blog.xscode.com/insights/
URL Trang Chính Sách Bảo Mật https://xscode.com/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Insights by xs:code",
    "description": "xs:code - Intuitive Open Source Analysis",
    "version": "1.0.9",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "xs:code insights for Github repos",
        "default_icon": {
            "16": "icons\/16x16-2.png",
            "48": "icons\/48x48-2.png",
            "128": "icons\/128x128-2.png",
            "265": "icons\/icon_256.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "panel.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16x16-1.png",
        "48": "icons\/48x48-1.png",
        "128": "icons\/128x128-1.png",
        "265": "icons\/icon_256.png"
    },
    "permissions": [
        "geolocation",
        "declarativeContent",
        "activeTab",
        "tabs"
    ],
    "web_accessible_resources": [
        "index.html",
        "popup.html",
        "popup.css",
        "panel.js",
        "js\/*",
        "fonts\/*",
        "img\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "Opens thexs:code insights side bar"
        }
    }
}