SourceKit for Chrome

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

Was ist SourceKit for Chrome?

SourceKit for Chrome ist eine Chrome-Erweiterung, die von https://kishikawakatsumi.com entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension for GitHub, that enables Xcode features on your browser.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

SourceKit for Chrome-Erweiterungs-CRX-Datei herunterladen

Laden Sie SourceKit for Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name SourceKit for Chrome SourceKit for Chrome
ID ndfileljkldjnflefdckeiaedelndafe
Offizielle URL https://chromewebstore.google.com/detail/sourcekit-for-chrome/ndfileljkldjnflefdckeiaedelndafe
Beschreibung A browser extension for GitHub, that enables Xcode features on your browser.
Dateigröße 2.02 MB
Installationsanzahl 114
Aktuelle Version 0.6.3
Letztes Update 2022-09-15
Veröffentlichungsdatum 2020-04-14
Entwickler https://kishikawakatsumi.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kishikawakatsumi/SourceKitForSafari
Hilfeseite URL https://github.com/kishikawakatsumi/SourceKitForSafari
URL der Datenschutzrichtlinien-Seite https://kishikawakatsumi.com/privacy_policy.html
Unterstützte Sprachen 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"
    ]
}