Insights by xs:code

xs:code - Intuitive Open Source Analysis

Insights by xs:code란 무엇입니까?

Insights by xs:code은(는) https://xscode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "xs:code - Intuitive Open Source Analysis"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Insights by xs:code 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Insights by xs:code Insights by xs:code
ID jajalhibgdhhfmpjmdnhoepjncieljci
공식 URL https://chromewebstore.google.com/detail/insights-by-xscode/jajalhibgdhhfmpjmdnhoepjncieljci
설명 xs:code - Intuitive Open Source Analysis
파일 크기 9.74 MB
설치 횟수 81
현재 버전 1.0.9
최근 업데이트 2020-09-01
출시 날짜 2020-08-06
평점 5.00/5 총 7 개의 평점
개발자 https://xscode.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://blog.xscode.com/insights/
개인정보 보호 정책 페이지 URL https://xscode.com/privacy
지원되는 언어 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"
        }
    }
}