SourceKit for Chrome
A browser extension for GitHub, that enables Xcode features on your browser.
SourceKit for Chromeとは何ですか?
SourceKit for Chromeはhttps://kishikawakatsumi.comによって開発されたChromeの拡張機能で、その主な機能は「A browser extension for GitHub, that enables Xcode features on your browser.」です。
拡張機能のスクリーンショット
SourceKit for Chrome拡張機能のCRXファイルをダウンロード
SourceKit for Chrome拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
SourceKit for Safari is a Safari extension for GitHub, that enables Xcode features like go to definition, find references, or documentation on hover.
拡張機能の基本情報
名前 | SourceKit for Chrome |
ID | ndfileljkldjnflefdckeiaedelndafe |
公式URL | https://chromewebstore.google.com/detail/sourcekit-for-chrome/ndfileljkldjnflefdckeiaedelndafe |
説明 | A browser extension for GitHub, that enables Xcode features on your browser. |
ファイルサイズ | 2.02 MB |
インストール数 | 114 |
現在のバージョン | 0.6.3 |
最終更新日 | 2022-09-15 |
公開日 | 2020-04-14 |
開発者 | https://kishikawakatsumi.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/kishikawakatsumi/SourceKitForSafari |
ヘルプページのURL | https://github.com/kishikawakatsumi/SourceKitForSafari |
プライバシーポリシーページのURL | https://kishikawakatsumi.com/privacy_policy.html |
対応言語 | 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", " |