Qlik Sense Export
Copy Qlik Sense table cells to clipboard.
What is Qlik Sense Export?
Qlik Sense Export is a Chrome extension developed by Unknown, and its main feature is "Copy Qlik Sense table cells to clipboard.".
Extension Screenshots
Download Qlik Sense Export Extension CRX File
Download Qlik Sense Export extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Qlik Sense Export |
ID | eodahfhaebobecdpgmahbjefgjbegmgp |
Official URL | https://chromewebstore.google.com/detail/qlik-sense-export/eodahfhaebobecdpgmahbjefgjbegmgp |
Description | Copy Qlik Sense table cells to clipboard. |
File Size | 77.04 KB |
Installation Count | 459 |
Current Version | 1.0 |
Last Updated | 2016-04-02 |
Publish Date | 2016-04-01 |
Rating | 3.20/5 Total 5 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/KFredberg/qliksense-chrome-export |
Help Page URL | https://github.com/KFredberg/qliksense-chrome-export |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Qlik Sense Export", "description": "Copy Qlik Sense table cells to clipboard.", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "version": "1.0", "permissions": [ "contextMenus", "clipboardWrite", "activeTab" ], "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js", "jquery-2.2.2.min.js" ] } ] } |