Octotree - GitHub code tree
GitHub on steroids
Octotree - GitHub code tree क्या है?
Octotree - GitHub code tree https://octotree.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "GitHub on steroids"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Octotree - GitHub code tree एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Browser extension that enhances GitHub code review and exploration. Features * Fast IDE-like code tree * Quick search in tree format * Bookmark repos, issues, PRs, files * Support GitHub themes * Support private repositories * High performance, working with repositories of any size PRO features * Multiple tabs * File icon themes * Code font settings * Quick PR navigation * Unlimited bookmarks * Pull request code review * Sidebar docking position * Multiple GitHub accounts * Support GitHub Enterprise Learn more: https://www.octotree.io/features NO BS POLICY: Octotree doesn't track you or share/care about your data at all. GitHub tokens are only needed when you want to access private repositories or exceed GitHub API rate limit. Octotree stores tokens in your browser storage and only uses them to authenticate with GitHub.
एक्सटेंशन की मूल जानकारी
नाम | Octotree - GitHub code tree |
ID | bkhaagjahfmjljalopjnoealnfndnagc |
आधिकारिक URL | https://chromewebstore.google.com/detail/octotree-github-code-tree/bkhaagjahfmjljalopjnoealnfndnagc |
विवरण | GitHub on steroids |
फ़ाइल का आकार | 3.4 MB |
स्थापना संख्या | 355,738 |
वर्तमान संस्करण | 7.11.2 |
अंतिम अपडेट | 2024-01-04 |
प्रकाशन तिथि | 2020-07-01 |
रेटिंग | 4.86/5 कुल 1143 रेटिंग्स |
डेवलपर | https://octotree.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.octotree.io/ |
सहायता पृष्ठ URL | https://www.octotree.io/contact |
गोपनीयता नीति पृष्ठ URL | https://www.octotree.io/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Octotree - GitHub code tree", "version": "7.11.2", "description": "GitHub on steroids", "homepage_url": "https:\/\/www.octotree.io", "author": "Team Octotree", "manifest_version": 2, "minimum_chrome_version": "60", "applications": { "gecko": { "id": "jid1-Om7eJGwA1U8Akg@jetpack", "strict_min_version": "55.0" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png", "browser_style": true }, "permissions": [ "https:\/\/api.github.com\/*", "https:\/\/www.octotree.io\/*", "storage", "contextMenus", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "*.woff2", "*.png", "*.gif", "*.svg" ], "background": { "scripts": [ "browser-polyfill.js", "background.js" ], "persistent": true }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "browser-polyfill.js", "content.js" ], "css": [ "content.css" ] } ] } |