Finalfees Tracker
Chrome extension for finalfees to export your sales data into your spreadsheets.
什么是Finalfees Tracker?
Finalfees Tracker是由https://finalfees.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for finalfees to export your sales data into your spreadsheets.”。
扩展截图
下载Finalfees Tracker扩展crx文件
下载Finalfees Tracker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Forget about doing it manually one by one and do it all instantly with a single click on a button! Finalfees extension helps you import your sales data from various sites into your spreadsheet. It calculates all the fees and deductions on your entire sales you have made.
Features:
✔ Available for Poshmark, Grailed and Depop
✔ Able to download XLSX for your google sheets
✔ Instantly save your sales to our website(visible on Finalfees.com)
✔ Automatically calculates all the fees from your sales
✔ Quick & easy to use
By using this extension, you agree to Finalfees Terms & Privacy
https://www.finalfees.com/policy-terms
https://www.finalfees.com/policy-data 扩展基本信息
| 名称 | |
| ID | ckfckhenbpkfpoagigiddcdnofklbpge |
| 官方URL | https://chromewebstore.google.com/detail/finalfees-tracker/ckfckhenbpkfpoagigiddcdnofklbpge |
| 简介 | Chrome extension for finalfees to export your sales data into your spreadsheets. |
| 文件大小 | 213 KB |
| 安装次数 | 35 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-01-20 |
| 上架时间 | 2021-01-20 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | https://finalfees.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://www.finalfees.com/policy-data |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Finalfees Tracker",
"description": "Chrome extension for finalfees to export your sales data into your spreadsheets.",
"version": "1.0",
"author": "Finalfees",
"permissions": [
"cookies",
"https:\/\/poshmark.ca\/*",
"https:\/\/www.grailed.com\/*",
"https:\/\/www.depop.com\/*",
"https:\/\/*.finalfees.com\/*",
"contextMenus",
"storage",
"tabs"
],
"browser_action": {
"default_icon": "images\/logo_16.png",
"default_popup": "popup.html",
"default_title": "Sync Transaction Data"
},
"icons": {
"16": "images\/logo_16.png",
"48": "images\/logo_48.png",
"128": "images\/logo_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"images\/logo_16.png",
"images\/logo_128.png"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/poshmark.ca\/*",
"https:\/\/www.grailed.com\/*",
"https:\/\/www.depop.com\/*",
"https:\/\/*.finalfees.com\/*"
],
"js": [
"content_script.js",
"libs\/sweetalert.min.js"
]
}
]
} | |