Copytables

Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.

Copytables क्या है?

Copytables https://merribithouse.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        - Hold Alt and click to select cells, Alt + Ctrl to select a column...

- or use hotkeys and menus to select and copy.
 
 - Copy as rich text (for Word), as tab or comma-delimited text (for Excel), as HTML (for your website).
 
 - Popup information about selected cells (Sum, Average etc)
 
 - Everything configurable.                    

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

नाम Copytables Copytables
ID ekdpkppgmlalfkphpibadldikjimijon
आधिकारिक URL https://chromewebstore.google.com/detail/copytables/ekdpkppgmlalfkphpibadldikjimijon
विवरण Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.
फ़ाइल का आकार 43.07 KB
स्थापना संख्या 93,176
वर्तमान संस्करण 0.5.9
अंतिम अपडेट 2019-04-02
प्रकाशन तिथि 2019-04-02
रेटिंग 4.42/5 कुल 183 रेटिंग्स
डेवलपर https://merribithouse.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://merribithouse.net/copytables
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Select table cells, rows and columns with your mouse or from a context menu. Copy as rich text, HTML, tab-delimited and CSV.",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "contextMenus",
        "webNavigation",
        "storage"
    ],
    "icons": {
        "16": "ico16.png",
        "48": "ico48.png",
        "128": "ico128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "ico19.png",
            "38": "ico38.png"
        },
        "default_title": "Copytables",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "commands": {
        "find_previous": {
            "description": "Find previous table"
        },
        "find_next": {
            "description": "Find next table"
        },
        "capture_cell": {
            "description": "Capture cells"
        },
        "capture_column": {
            "description": "Capture columns"
        },
        "capture_row": {
            "description": "Capture rows"
        },
        "capture_zzz": {
            "description": "Turn off the capture"
        },
        "capture_table": {
            "description": "Capture tables"
        }
    },
    "name": "Copytables",
    "version": "0.5.9",
    "homepage_url": "https:\/\/merribithouse.net\/copytables"
}