ClipboardOverflow

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

ClipboardOverflow क्या है?

ClipboardOverflow perronemgianluca द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy code snippets from Stack Overflow by clicking on a button."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ClipboardOverflow एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम ClipboardOverflow ClipboardOverflow
ID niidcejebmapmgohjfhajoiaiodalmck
आधिकारिक URL 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"
    }
}