3D Shopping

3D preview of products on supported e-shops

3D Shoppingคืออะไร?

3D Shopping เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jiri Kuba และคุณลักษณะหลักของมันคือ "3D preview of products on supported e-shops"

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

screenshot

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

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

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

                        This extension is adding 3D preview of products on supported e-shops.
3D models of products are hosted on sketchfab.com.

Supported e-shops:
https://www.ebay.com/
https://www.amazon.com/
https://www.amazon.de/
https://www.alza.cz/
https://www.alza.sk/
https://www.czc.cz/
https://www.kytary.cz/
https://www.aliexpress.com/
https://www.nike.com/

Badge is indicating when active site is supported.                    

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

ชื่อ 3D Shopping 3D Shopping
ID gffidnhlbfheejjopdlpeoefmlegdged
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/3d-shopping/gffidnhlbfheejjopdlpeoefmlegdged
คำอธิบาย 3D preview of products on supported e-shops
ขนาดไฟล์ 45.84 KB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 0.9
อัปเดตครั้งล่าสุด 2018-06-17
วันที่เผยแพร่ 2018-06-17
ผู้พัฒนา Jiri Kuba
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "3D Shopping",
    "short_name": "3D Shopping",
    "author": "Jiri Kuba",
    "description": "3D preview of products on supported e-shops",
    "version": "0.9",
    "icons": {
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/sketchfab.com\/*",
        "https:\/\/ancient-river-18150.herokuapp.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.alza.cz\/*",
                "*:\/\/*.alza.sk\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/alza.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.de\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/amazon.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.czc.cz\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/czc.content.translations.js",
                "content\/shops\/czc.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.ebay.com\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/ebay.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.kytary.cz\/*",
                "*:\/\/kytary.cz\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/kytary.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.nike.com\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/nike.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/item\/*"
            ],
            "js": [
                "shared\/constants.js",
                "content\/shops\/aliexpress.content.js",
                "content\/contentBase.js",
                "content\/statusWritter.js",
                "content\/app.js"
            ],
            "css": [
                "content\/styles\/3d.shopping.styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "128": "images\/icon-128.png"
        }
    },
    "background": {
        "scripts": [
            "shared\/config.js",
            "shared\/constants.js",
            "background\/services\/cacheService.js",
            "background\/services\/apiCalls.js",
            "background\/services\/BEDataProvider.js",
            "background\/services\/objectService.js",
            "background\/services\/contentScriptDataProvider.js",
            "background\/services\/badgeService.js",
            "background\/services\/serviceContainer.js",
            "background\/background.js"
        ],
        "persistent": false
    }
}