SourceKit for Chrome

A browser extension for GitHub, that enables Xcode features on your browser.

What is SourceKit for Chrome?

SourceKit for Chrome is a Chrome extension developed by https://kishikawakatsumi.com, and its main feature is "A browser extension for GitHub, that enables Xcode features on your browser.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download SourceKit for Chrome Extension CRX File

Download SourceKit for Chrome extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        SourceKit for Safari is a Safari extension for GitHub, that enables Xcode features like go to definition, find references, or documentation on hover.                    

Extension Basic Information

Name SourceKit for Chrome SourceKit for Chrome
ID ndfileljkldjnflefdckeiaedelndafe
Official URL https://chromewebstore.google.com/detail/sourcekit-for-chrome/ndfileljkldjnflefdckeiaedelndafe
Description A browser extension for GitHub, that enables Xcode features on your browser.
File Size 2.02 MB
Installation Count 114
Current Version 0.6.3
Last Updated 2022-09-15
Publish Date 2020-04-14
Developer https://kishikawakatsumi.com
Email [email protected]
Payment Type free
Extension Website https://github.com/kishikawakatsumi/SourceKitForSafari
Help Page URL https://github.com/kishikawakatsumi/SourceKitForSafari
Privacy Policy Page URL https://kishikawakatsumi.com/privacy_policy.html
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SourceKit for Chrome",
    "version": "0.6.3",
    "description": "A browser extension for GitHub, that enables Xcode features on your browser.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup\/popup.html"
    },
    "author": "Kishikawa Katsumi",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "css\/index.css",
                "css\/style.css",
                "css\/tippyjs\/tippy.css",
                "css\/tippyjs\/light-border.css",
                "css\/highlightjs\/xcode.css"
            ],
            "js": [
                "bundle.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/kishikawakatsumi\/SourceKitForSafari",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "nativeMessaging",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ]
}