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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Finalfees Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}