ClipboardOverflow
Copy code snippets from Stack Overflow by clicking on a button.
什麼是ClipboardOverflow?
ClipboardOverflow是由perronemgianluca開發的Chrome擴展程式,該擴展的主要功能是“Copy code snippets from Stack Overflow by clicking on a button.”。
擴展截圖
下載ClipboardOverflow擴展crx文件
下載ClipboardOverflow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Get the code snippets from Stack Overflow questions on your clipboard by clicking on a button. No more side scrolling, no more losing your selection with the mouse. A developer's time is his(her) money, save it now.
- Features a unobtrusive UI.
- The extension also gives you the option of having an automatic way of crediting the source by commenting the question URL before the actual code snippet that gets copied.
- It supports most major programming languages for the comment syntax ( 22 of them ). 擴展基本資訊
| 名稱 | |
| ID | niidcejebmapmgohjfhajoiaiodalmck |
| 官方網址 | https://chromewebstore.google.com/detail/clipboardoverflow/niidcejebmapmgohjfhajoiaiodalmck |
| 簡介 | Copy code snippets from Stack Overflow by clicking on a button. |
| 檔案大小 | 11.7 KB |
| 安裝次數 | 78 |
| 目前版本 | 0.0.0.1 |
| 更新時間 | 2021-02-10 |
| 上架時間 | 2020-05-02 |
| 開發者 | perronemgianluca |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/Caloma11/clipboard-overflow |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ClipboardOverflow",
"version": "0.0.0.1",
"description": "Copy code snippets from Stack Overflow by clicking on a button.",
"homepage_url": "https:\/\/github.com\/Caloma11\/clipboard-overflow",
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage",
"declarativeContent"
],
"manifest_version": 2,
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/stackoverflow.com\/questions\/*"
],
"js": [
"js\/script.js"
],
"css": [
"css\/style.css"
]
}
],
"page_action": {
"default_icon": {
"16": "images\/clipboard_icon16.png",
"32": "images\/clipboard_icon32.png",
"48": "images\/clipboard_icon48.png",
"128": "images\/clipboard_icon128.png"
}
},
"icons": {
"16": "images\/clipboard_icon16.png",
"32": "images\/clipboard_icon32.png",
"48": "images\/clipboard_icon48.png",
"128": "images\/clipboard_icon128.png"
}
} | |