Devsheet
Search and create code snippets
What is Devsheet?
Devsheet is a Chrome extension developed by https://devsheet.com, and its main feature is "Search and create code snippets".
Extension Screenshots
Download Devsheet Extension CRX File
Download Devsheet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud.
Extension Basic Information
Name | |
ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
Official URL | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
Description | Search and create code snippets |
File Size | 173 KB |
Installation Count | 168 |
Current Version | 1.3 |
Last Updated | 2020-11-11 |
Publish Date | 2019-07-20 |
Rating | 4.00/5 Total 4 Ratings |
Developer | https://devsheet.com |
[email protected] | |
Payment Type | free |
Extension Website | https://devsheet.com |
Supported Languages | 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" ] } ] } |