Finalfees Tracker

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

What is Finalfees Tracker?

Finalfees Tracker is a Chrome extension developed by https://finalfees.com, and its main feature is "Chrome extension for finalfees to export your sales data into your spreadsheets.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Finalfees Tracker Extension CRX File

Download Finalfees Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Finalfees Tracker Finalfees Tracker
ID ckfckhenbpkfpoagigiddcdnofklbpge
Official URL https://chromewebstore.google.com/detail/finalfees-tracker/ckfckhenbpkfpoagigiddcdnofklbpge
Description Chrome extension for finalfees to export your sales data into your spreadsheets.
File Size 213 KB
Installation Count 35
Current Version 1.0
Last Updated 2021-01-20
Publish Date 2021-01-20
Rating 1.00/5 Total 1 Ratings
Developer https://finalfees.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.finalfees.com/policy-data
Supported Languages 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"
            ]
        }
    ]
}