Code Copier

Code Copier - Extension to copy contents inside and

 tags with right click

Code Copier क्या है?

Code Copier Ice Lam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Code Copier - Extension to copy contents inside and

 tags with right click"।

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

screenshot
screenshot
screenshot

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

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

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

 Google Chrome and Mozilla Firefox extension to copy contents inside  and 
 tags with right click. Fetures: * Right click on  and 
 tags to copy
* Up to 10 copy history
* Go back to the website where the code snippets from
* Disable plugin on user defined host names

Other Information:
* Firefox Version: https://addons.mozilla.org/en-US/firefox/addon/code-copier/
* Source code available at https://github.com/icelam/code-copier.                    

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

नाम Code Copier Code Copier
ID polidkhcaghmmijeemenkiloblpdfphp
आधिकारिक URL https://chromewebstore.google.com/detail/code-copier/polidkhcaghmmijeemenkiloblpdfphp
विवरण Code Copier - Extension to copy contents inside and
 tags with right click
फ़ाइल का आकार 233 KB
स्थापना संख्या 2,000
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-11-04
प्रकाशन तिथि 2019-11-04
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर Ice Lam
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/icelam/code-copier
समर्थित भाषाएँ en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Code Copier", "author": "Ice Lam", "homepage_url": "https:\/\/github.com\/icelam\/code-copier", "version": "1.0", "description": "Code Copier - Extension to copy contents inside  and 
 tags with right click",
    "icons": {
        "16": "assets\/images\/icons\/icon16.png",
        "32": "assets\/images\/icons\/icon32.png",
        "36": "assets\/images\/icons\/icon36.png",
        "48": "assets\/images\/icons\/icon48.png",
        "128": "assets\/images\/icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/images\/icons\/icon16.png",
            "24": "assets\/images\/icons\/icon24.png",
            "32": "assets\/images\/icons\/icon32.png"
        },
        "default_title": "Code Copier",
        "default_popup": "index.html"
    },
    "permissions": [
        "clipboardWrite",
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/content-script.js"
            ],
            "css": [
                "assets\/css\/web.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' blob:; style-src * 'unsafe-inline'; font-src *"
}