File Icons for GitHub and GitLab
A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.
File Icons for GitHub and GitLab क्या है?
File Icons for GitHub and GitLab homerchen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में File Icons for GitHub and GitLab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
On GitHub, no matter what kind of file is, their icons are all same. However, in your fancy editor, there are some packages which give every filetype an unique icon. Therefore, I build a simple extension to replace original file icon with filetype-specific icons. This improves visual recognition on GitHub, GitLab, etc. Hope you like it! **This extension is not a project of GitHub or any company**
एक्सटेंशन की मूल जानकारी
नाम | File Icons for GitHub and GitLab |
ID | ficfmibkjjnpogdcfhfokmihanoldbfe |
आधिकारिक URL | https://chromewebstore.google.com/detail/file-icons-for-github-and/ficfmibkjjnpogdcfhfokmihanoldbfe |
विवरण | A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs. |
फ़ाइल का आकार | 460 KB |
स्थापना संख्या | 20,000 |
वर्तमान संस्करण | 1.5.2 |
अंतिम अपडेट | 2024-02-19 |
प्रकाशन तिथि | 2020-06-19 |
रेटिंग | 4.86/5 कुल 43 रेटिंग्स |
डेवलपर | homerchen |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/homerchen19/github-file-icons |
सहायता पृष्ठ URL | https://github.com/homerchen19/github-file-icons/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A simple browser tool changes file's icon on GitHub, GitLab, gitea and gogs.", "version": "1.5.2", "manifest_version": 2, "name": "File Icons for GitHub and GitLab", "author": "homerchen19", "homepage_url": "https:\/\/github.com\/homerchen19\/github-file-icons", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/*.gogs.io\/*", "https:\/\/*.gitea.io\/*" ], "js": [ "content.bundle.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "icons": { "16": "img\/icon-16.png", "64": "img\/icon-64.png", "128": "img\/icon-128.png" }, "browser_action": { "default_icon": "img\/icon-64.png" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "*.woff2" ], "permissions": [ "contextMenus", "storage", "activeTab", "https:\/\/github.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/*.gogs.io\/*", "https:\/\/*.gitea.io\/*" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |