3D Shopping
3D preview of products on supported e-shops
3D Shopping란 무엇입니까?
3D Shopping은(는) Jiri Kuba에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "3D preview of products on supported e-shops"입니다.
확장 프로그램 스크린샷
3D Shopping 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 } } |