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文件

下載Insights by xs:code擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}