Devsheet
Search and create code snippets
Co to jest Devsheet?
Devsheet to rozszerzenie Chrome opracowane przez https://devsheet.com, a jego główną funkcją jest „Search and create code snippets”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Devsheet
Pobierz pliki rozszerzeń Devsheet 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
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
Oficjalny URL | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
Opis | Search and create code snippets |
Rozmiar pliku | 173 KB |
Liczba instalacji | 168 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2020-11-11 |
Data Publikacji | 2019-07-20 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | https://devsheet.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://devsheet.com |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Devsheet", "manifest_version": 2, "description": "Search and create code snippets", "version": "1.3", "browser_action": { "default_icon": "icon.png", "default_title": "Devsheet", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "https:\/\/devsheet.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "lib\/prism.js", "js\/content-script.js" ], "css": [ "css\/dsStyle.css" ] } ] } |