Devsheet
Search and create code snippets
Wat is Devsheet?
Devsheet is een Chrome-extensie ontwikkeld door https://devsheet.com, en de belangrijkste functie is "Search and create code snippets".
Extensie Screenshots
Download het CRX-bestand van de extensie Devsheet
Download Devsheet-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
Basisinformatie over de Extensie
Naam | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
Officiële URL | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
Beschrijving | Search and create code snippets |
Bestandsgrootte | 173 KB |
Aantal Installaties | 168 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2020-11-11 |
Publicatiedatum | 2019-07-20 |
Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | https://devsheet.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://devsheet.com |
Ondersteunde Talen | 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" ] } ] } |