ClipboardOverflow

Copy code snippets from Stack Overflow by clicking on a button.

ClipboardOverflow là gì?

ClipboardOverflow là một tiện ích mở rộng Chrome được phát triển bởi perronemgianluca, và tính năng chính của nó là "Copy code snippets from Stack Overflow by clicking on a button.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ClipboardOverflow

Tải xuống các tệp mở rộng ClipboardOverflow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 ).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ClipboardOverflow ClipboardOverflow
ID niidcejebmapmgohjfhajoiaiodalmck
URL Chính Thức https://chromewebstore.google.com/detail/clipboardoverflow/niidcejebmapmgohjfhajoiaiodalmck
Mô tả Copy code snippets from Stack Overflow by clicking on a button.
Kích Thước Tệp 11.7 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2021-02-10
Ngày Phát Hành 2020-05-02
Nhà Phát Triển perronemgianluca
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Caloma11/clipboard-overflow
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}