Tickertape exporter
Export tickertape screener table to a csv file
什麼是Tickertape exporter?
Tickertape exporter是由anirvan.mandal開發的Chrome擴展程式,該擴展的主要功能是“Export tickertape screener table to a csv file”。
擴展截圖
下載Tickertape exporter擴展crx文件
下載Tickertape exporter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows users to download the Tickertape Screener table data to a CSV file. Helps in analysing the different stocks, mutual funds available in the market. Note: Paid screener users will not be able to use this version 1.0 of the plugin as it will overwrite the export button functionality
擴展基本資訊
名稱 | Tickertape exporter |
ID | heijmlobndihkkpaidbhofckhdbhinma |
官方網址 | https://chromewebstore.google.com/detail/tickertape-exporter/heijmlobndihkkpaidbhofckhdbhinma |
簡介 | Export tickertape screener table to a csv file |
檔案大小 | 26.51 KB |
安裝次數 | 164 |
目前版本 | 1.1.0 |
更新時間 | 2023-06-01 |
上架時間 | 2023-06-01 |
評分 | 2.00/5 共 1 次評分 |
開發者 | anirvan.mandal |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/anirvanmandal/tickertape-exporter |
說明頁面URL | https://github.com/anirvanmandal/tickertape-exporter/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tickertape exporter", "description": "Export tickertape screener table to a csv file", "version": "1.1.0", "icons": { "16": "\/src\/images\/logo_16.png", "32": "\/src\/images\/logo_32.png", "48": "\/src\/images\/logo_48.png", "128": "\/src\/images\/logo_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.tickertape.in\/screener\/*" ], "css": [], "js": [ "\/src\/content-script.js" ], "run_at": "document_idle" } ] } |