github-code-viewer
A Chromium extension to view GitHub code faster and easier.
Co to jest github-code-viewer?
github-code-viewer to rozszerzenie Chrome opracowane przez xcv58, a jego główną funkcją jest „A Chromium extension to view GitHub code faster and easier.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia github-code-viewer
Pobierz pliki rozszerzeń github-code-viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
View GitHub code in VSCode.
Podstawowe informacje o rozszerzeniu
Nazwa | github-code-viewer |
ID | ecddapgifccgblebfibdgkagfbdagjfn |
Oficjalny URL | https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn |
Opis | A Chromium extension to view GitHub code faster and easier. |
Rozmiar pliku | 19.39 KB |
Liczba instalacji | 609 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2021-02-10 |
Data Publikacji | 2021-02-10 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | xcv58 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/febaoshan/edge-extensions-github-code-viewer |
Adres URL Strony Pomocy | https://github.com/febaoshan/edge-extensions-github-code-viewer/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-code-viewer", "version": "0.0.1", "manifest_version": 2, "description": "A Chromium extension to view GitHub code faster and easier.", "icons": { "16": "icons\/logo16x16.png", "32": "icons\/logo32x32.png", "48": "icons\/logo48x48.png", "128": "icons\/logo128x128.png" }, "page_action": { "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/background.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "src\/background.js" ], "homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer", "permissions": [ "contextMenus" ], "background": { "scripts": [ "src\/background.js" ] } } |