Copy Better

Let the copy experience more better

Copy Better क्या है?

Copy Better https://kodango.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let the copy experience more better"।

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

screenshot

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

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

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

                        A google chrome extension to make copy better.

This extension has below functions:
1. Copy selected text automatically;
2, Copy selected html source code;
3. Copy title and URL of current tab or all tabs;
4. Store recent copy cache, you can select it from the toolbar button menu;
5. Remove hide text in the web when copy;

Feedback On Blog: http://kodango.com/copybetter-extension#comment

If you would like to support me for my developing, you can donate me by clicking the donate button in my home page:

http://kodango.com/about#i_4                    

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

नाम Copy Better Copy Better
ID hpihdokfdmmghaclaojfpmbckkhjgebc
आधिकारिक URL https://chromewebstore.google.com/detail/copy-better/hpihdokfdmmghaclaojfpmbckkhjgebc
विवरण Let the copy experience more better
फ़ाइल का आकार 34.58 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.2.1
अंतिम अपडेट 2020-02-29
प्रकाशन तिथि 2020-02-26
रेटिंग 4.38/5 कुल 50 रेटिंग्स
डेवलपर https://kodango.com
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://kodango.com/copybetter-extension#comment
सहायता पृष्ठ URL https://github.com/dangoakachan/copybetter/issues/new
समर्थित भाषाएँ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "name": "__MSG_ext_name__",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "__MSG_ext_desc__",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "__MSG_browser_action_title__",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "\/img\/icon-16.png",
            "38": "\/img\/icon-32.png"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "\/js\/copybetter.js"
            ],
            "css": [
                "\/css\/copybetter.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "cmd_copy_curtab_in_html": {
            "description": "__MSG_cmd_copy_curtab_in_html__",
            "suggested_key": {
                "default": "Alt+Y"
            }
        },
        "cmd_copy_curtab_in_text": {
            "description": "__MSG_cmd_copy_curtab_in_text__",
            "suggested_key": {
                "default": "Ctrl+Y",
                "mac": "MacCtrl+Y"
            }
        },
        "cmd_copy_alltabs_in_html": {
            "description": "__MSG_cmd_copy_alltabs_in_html__",
            "suggested_key": {
                "default": "Alt+Shift+Y"
            }
        },
        "cmd_copy_alltabs_in_text": {
            "description": "__MSG_cmd_copy_alltabs_in_text__",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "MacCtrl+Shift+Y"
            }
        }
    },
    "icons": {
        "16": "\/img\/icon-16.png",
        "32": "\/img\/icon-32.png",
        "48": "\/img\/icon-48.png",
        "64": "\/img\/icon-64.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "clipboardWrite",
        "tabs",
        "notifications"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}