Cartzy

Cartzy's Facebook marketplace solution for listing products.

Cartzyคืออะไร?

Cartzy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vaival-chrome-developers และคุณลักษณะหลักของมันคือ "Cartzy's Facebook marketplace solution for listing products."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Cartzy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Cartzy Facebook Extension is the go-to way for Cartzy store owners to publish their products on Facebook Marketplace. The extension supports product publishing, price update, stock update and product deletion. And all the while your listings on the Marketplace are in sync with your store.

Release Notes:
1.1.4
Turn auto-sync on/off functionality added.
Major fixes on tabbing issue.

1.1.5
Price auto-sync issue (fixed).
Close tab on clicking selling (fixed).

1.1.6
Multiple tabs remained open (fixed).                    

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

ชื่อ Cartzy Cartzy
ID jomfpdbkembghhagcgipfkiaejmbdadk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cartzy/jomfpdbkembghhagcgipfkiaejmbdadk
คำอธิบาย Cartzy's Facebook marketplace solution for listing products.
ขนาดไฟล์ 131 KB
จำนวนการติดตั้ง 2,930
เวอร์ชันปัจจุบัน 1.1.6
อัปเดตครั้งล่าสุด 2022-08-16
วันที่เผยแพร่ 2021-12-13
คะแนน 5.00/5 รวมทั้งหมด 59 คะแนน
ผู้พัฒนา vaival-chrome-developers
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://cartzy.com/privacy?flux_sess=0f020e80354392ed661370b406122e04&flux_hid=1707945035503568009
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/create\/item*"
            ],
            "css": [
                "fb.css"
            ],
            "js": [
                "config.js",
                "helpers.js",
                "fb-content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/you\/*"
            ],
            "css": [
                "alertify.css"
            ],
            "js": [
                "config.js",
                "jquery-3.6.0.min.js",
                "helpers.js",
                "alertify.js",
                "fb-selling.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/edit\/*"
            ],
            "css": [],
            "js": [
                "helpers.js",
                "fb-edit.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/store.test\/admin\/*",
                "*:\/\/*.mycartzy.tk\/admin\/*",
                "*:\/\/*.mycartzy.ml\/admin\/*",
                "*:\/\/*.mycartzy.com\/admin\/*"
            ],
            "css": [
                "alertify.css"
            ],
            "js": [
                "alertify.js",
                "cartzy-content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/item\/*"
            ],
            "css": [],
            "js": [
                "config.js",
                "helpers.js",
                "fb-stockupdate.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/*"
            ],
            "css": [],
            "js": [
                "helpers.js",
                "not-found.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/marketplace\/you\/selling?title_search=*&is_delete=1&listing_id=*"
            ],
            "css": [],
            "js": [
                "config.js",
                "helpers.js",
                "fb-delete.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "name": "Cartzy",
    "description": "Cartzy's Facebook marketplace solution for listing products.",
    "version": "1.1.6",
    "icons": {
        "128": "images\/logo.png"
    },
    "action": {
        "default_icon": "images\/logo.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms"
    ],
    "host_permissions": [],
    "incognito": "spanning"
}