Devsheet
Search and create code snippets
什麼是Devsheet?
Devsheet是由https://devsheet.com開發的Chrome擴展程式,該擴展的主要功能是“Search and create code snippets”。
擴展截圖
下載Devsheet擴展crx文件
下載Devsheet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The chrome extension provides you the short and easiest way to search and create code snippets on the cloud. 擴展基本資訊
| 名稱 | |
| ID | jkfmhofllmgpemedelijnhcpfgbhaphc |
| 官方網址 | https://chrome.google.com/webstore/detail/devsheet/jkfmhofllmgpemedelijnhcpfgbhaphc |
| 簡介 | Search and create code snippets |
| 檔案大小 | 173 KB |
| 安裝次數 | 168 |
| 目前版本 | 1.3 |
| 更新時間 | 2020-11-11 |
| 上架時間 | 2019-07-20 |
| 評分 | 4.00/5 共 4 次評分 |
| 開發者 | https://devsheet.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://devsheet.com |
| 支援的語言 | 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"
]
}
]
} | |