Sourcegraph
Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages.
Sourcegraphคืออะไร?
Sourcegraph เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sourcegraph.com และคุณลักษณะหลักของมันคือ "Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sourcegraph
ดาวน์โหลดไฟล์ส่วนขยาย Sourcegraph ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
                        The open-source Sourcegraph extension adds code navigation and code intelligence to GitHub, GitHub Enterprise, GitLab, Bitbucket Server and Phabricator.
•  Code intelligence on your code host:
* Hover tooltips with documentation and type information
* Go to definition
* Find references
•  Integrations with third-party services like Codecov coverage overlays, open-in-editor buttons and many more with Sourcegraph extensions
•  Browser shortcut (src + Space) that performs the search on your Sourcegraph instance 
It works for 20+ languages on public and private code on popular code hosts (see below).
MAKE IT WORK ON YOUR CODE HOST:
•  GitHub - No action required. Your extension works here by default.
•  GitHub Enterprise, GitLab, Bitbucket Server and Phabricator - grant additional permissions in the extension menu
Browser extension docs: https://docs.sourcegraph.com/integration/browser_extension
MAKE IT WORK FOR PRIVATE CODE:
To use the browser extension with your private repositories, you need to set up a private Sourcegraph instance and connect it to the extension.
Installation docs: https://docs.sourcegraph.com/admin/install
WHERE TO START?
After adding the extension you install it, try it out on any of these public repositories:
•  Go: https://github.com/gorilla/mux/blob/9e1f59/mux.go or https://github.com/dgrijalva/jwt-go/pull/152/files#diff-f615844d3497ff38db57e459d6ef657bL48
•  Java: https://github.com/google/guava/blob/581ba1/guava/src/com/google/common/collect/ImmutableList.java
•  TypeScript: https://github.com/angular/angular/blob/a2878b/packages/benchpress/src/reporter/console_reporter.ts or https://github.com/sindresorhus/got/pull/917/files#diff-02301bc46e8b878f10e9a8339efb7de7R176
•  C#: https://github.com/paiden/Nett/pull/76/files#diff-e969e1315b2cb01bab80b2860be0d87eR52
•  Python: https://github.com/ageitgey/face_recognition/blob/b8fed6/examples/facerec_on_raspberry_pi.py
This extension is open source: https://github.com/sourcegraph/sourcegraph/tree/main/client/browser                     ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ |   |  
| ID | dgjhfomjieaadpoljlnidmbgkdffpack | 
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sourcegraph/dgjhfomjieaadpoljlnidmbgkdffpack | 
| คำอธิบาย | Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages. | 
| ขนาดไฟล์ | 8.22 MB | 
| จำนวนการติดตั้ง | 128,809 | 
| เวอร์ชันปัจจุบัน | 23.12.12.2159 | 
| อัปเดตครั้งล่าสุด | 2023-12-13 | 
| วันที่เผยแพร่ | 2020-05-28 | 
| คะแนน | 4.57/5 รวมทั้งหมด 169 คะแนน | 
| ผู้พัฒนา | https://sourcegraph.com | 
| อีเมล | [email protected] | 
| ประเภทการชำระเงิน | free | 
| เว็บไซต์ส่วนขยาย | https://sourcegraph.com | 
| URL หน้าช่วยเหลือ | https://about.sourcegraph.com/ | 
| URL หน้านโยบายความเป็นส่วนตัว | https://about.sourcegraph.com/privacy | 
| ภาษาที่รองรับ | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "23.12.12.2159",
    "name": "Sourcegraph",
    "manifest_version": 2,
    "description": "Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages.",
    "browser_action": {
        "default_title": "Sourcegraph",
        "default_icon": {
            "32": "img\/icon-32.png",
            "48": "img\/icon-48.png",
            "128": "img\/icon-128.png"
        }
    },
    "icons": {
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/backgroundPage.main.bundle.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "optional_permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' blob:; object-src 'self'",
    "web_accessible_resources": [
        "img\/*",
        "css\/*",
        "extensions\/*"
    ],
    "omnibox": {
        "keyword": "src"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus",
        "https:\/\/github.com\/*",
        "https:\/\/sourcegraph.com\/*"
    ]
}  |  |