LiangziDown
Download Liangzihendao real time statistics data with just one click.
Cos'è LiangziDown?
LiangziDown è un'estensione di Chrome sviluppata da PinkyJie, e la sua funzione principale è "Download Liangzihendao real time statistics data with just one click.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LiangziDown
Scarica i file di estensione LiangziDown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
用途: 淘宝卖家通常都会使用量子恒道来查看店铺的访问情况,其中有一项统计数据为“实时客户访问”用于了解店铺的实时访问情况非常方便。但由于量子恒道官方的限制,只能查看当天的数据,并且不能批量下载保存。本插件可以批量下载当天的来访数据并保存为CSV格式。 使用: 1. 打开量子恒道首页,即可看到地址栏最右边的插件图标,未登录情况下点开图标将出现登录提示 2. 登录成功后再次点击图标,将显示您的淘宝用户名以及下载按钮 3. 点击下载按钮,Chrome将打开新tab页进行下载,文件类型为CSV,可用Excel打开,默认文件名称为淘宝用户名-年月日-时分秒(未来将可配置) 4. 使用Excel打开文件即可看到实时访客数据,字段涵盖网页上所有字段 5. 由于每天量子恒道会清空数据,所以插件自带提醒下载功能,默认会在每天的23:50提醒您进行下载 设置: 在设置页面中可以配置需要下载的字段以及提醒时间
Informazioni di Base sull'Estensione
Nome | |
ID | dkdgdjlebbekbmboilieclmigakdbjld |
URL Ufficiale | https://chrome.google.com/webstore/detail/%E9%87%8F%E5%AD%90%E5%85%9A/dkdgdjlebbekbmboilieclmigakdbjld |
Descrizione | Download Liangzihendao real time statistics data with just one click. |
Dimensione del File | 42.85 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2014-02-22 |
Data di Pubblicazione | 2014-02-22 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | PinkyJie |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/PinkyJie/LiangziDown |
Lingue Supportate | 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__" } |