ColumnCopy
Enables copying columns from tables.
ColumnCopy क्या है?
ColumnCopy james.andres द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables copying columns from tables."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ColumnCopy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Column Copy enables copying HTML tables and HTML table columns. NEW in 0.5.0: - Remove analytics tracking after complaints from a few users. - Upgraded keypress detection will hopefully fix sticking ctrl key issues that affected some users - Cells with newlines or quotes will be wrapped in quotation marks Features: - Copy table column by Alt + Click on any table cell. The column contents is now in your clipboard. - Copy table by Shit + Alt + Click on any table cell. The table contents is now in your clipboard. - Keyboard shortcuts are configurable. Changelog: version 0.4.0 - Better handling of nested tables - Strips whitespace from cells - Spelling correction version 0.3.7 - Hyperlink preservation support is now available in the options page - Default shortcut in Linux is now Ctrl+Click. This fixes several reported issues. Copy HTML table and copy HTML table column using ColumnCopy!
एक्सटेंशन की मूल जानकारी
नाम | ColumnCopy |
ID | lapbbfoohlcmlbdaakldmmallcbcbpjb |
आधिकारिक URL | https://chromewebstore.google.com/detail/columncopy/lapbbfoohlcmlbdaakldmmallcbcbpjb |
विवरण | Enables copying columns from tables. |
फ़ाइल का आकार | 800 KB |
स्थापना संख्या | 39,610 |
वर्तमान संस्करण | 0.5.0 |
अंतिम अपडेट | 2017-11-04 |
प्रकाशन तिथि | 2017-11-04 |
रेटिंग | 3.54/5 कुल 160 रेटिंग्स |
डेवलपर | james.andres |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jamesandres/ColumnCopy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ColumnCopy", "version": "0.5.0", "manifest_version": 2, "description": "Enables copying columns from tables.", "homepage_url": "https:\/\/github.com\/jamesandres\/ColumnCopy", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "options_page": "src\/options\/index.html", "permissions": [ "clipboardWrite", "contextMenus" ], "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery\/jquery.js", "js\/jquery.hotkeys\/jquery.hotkeys.js", "src\/inject\/inject.js" ], "css": [ "src\/inject\/inject.css" ] } ], "web_accessible_resources": [ "js\/jquery\/jquery.js", "js\/jquery\/jquery.min.map" ] } |