Finalfees Tracker

Chrome extension for finalfees to export your sales data into your spreadsheets.

Finalfees Trackerคืออะไร?

Finalfees Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://finalfees.com และคุณลักษณะหลักของมันคือ "Chrome extension for finalfees to export your sales data into your spreadsheets."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Finalfees Tracker

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Finalfees Tracker Finalfees Tracker
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"
            ]
        }
    ]
}