LiangziDown
Download Liangzihendao real time statistics data with just one click.
Was ist LiangziDown?
LiangziDown ist eine Chrome-Erweiterung, die von PinkyJie entwickelt wurde, und ihr Hauptmerkmal ist "Download Liangzihendao real time statistics data with just one click.".
Erweiterungsscreenshots
LiangziDown-Erweiterungs-CRX-Datei herunterladen
Laden Sie LiangziDown-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
用途: 淘宝卖家通常都会使用量子恒道来查看店铺的访问情况,其中有一项统计数据为“实时客户访问”用于了解店铺的实时访问情况非常方便。但由于量子恒道官方的限制,只能查看当天的数据,并且不能批量下载保存。本插件可以批量下载当天的来访数据并保存为CSV格式。 使用: 1. 打开量子恒道首页,即可看到地址栏最右边的插件图标,未登录情况下点开图标将出现登录提示 2. 登录成功后再次点击图标,将显示您的淘宝用户名以及下载按钮 3. 点击下载按钮,Chrome将打开新tab页进行下载,文件类型为CSV,可用Excel打开,默认文件名称为淘宝用户名-年月日-时分秒(未来将可配置) 4. 使用Excel打开文件即可看到实时访客数据,字段涵盖网页上所有字段 5. 由于每天量子恒道会清空数据,所以插件自带提醒下载功能,默认会在每天的23:50提醒您进行下载 设置: 在设置页面中可以配置需要下载的字段以及提醒时间
Grundlegende Informationen zur Erweiterung
Name | |
ID | dkdgdjlebbekbmboilieclmigakdbjld |
Offizielle URL | https://chrome.google.com/webstore/detail/%E9%87%8F%E5%AD%90%E5%85%9A/dkdgdjlebbekbmboilieclmigakdbjld |
Beschreibung | Download Liangzihendao real time statistics data with just one click. |
Dateigröße | 42.85 KB |
Installationsanzahl | 22 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2014-02-22 |
Veröffentlichungsdatum | 2014-02-22 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | PinkyJie |
Zahlungsart | free |
Hilfeseite URL | https://github.com/PinkyJie/LiangziDown |
Unterstützte Sprachen | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.0", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "zh_CN", "background": { "scripts": [ "scripts\/background.js" ] }, "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "__MSG_appName__", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/lz.taobao.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "tabs", "alarms", "storage", "notifications", "http:\/\/lz.taobao.com\/*", "http:\/\/api.linezing.com\/*" ], "author": "PinkyJie", "short_name": "__MSG_appName__" } |