Airbnb Local
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…
Airbnb Local란 무엇입니까?
Airbnb Local은(는) koukougogo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…"입니다.
확장 프로그램 스크린샷
Airbnb Local 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars Recommend cheaper and nearby apartments
확장 프로그램 기본 정보
이름 | |
ID | fmdapmnldajjokehoagkmkcllbommmfn |
공식 URL | https://chrome.google.com/webstore/detail/airbnb-local/fmdapmnldajjokehoagkmkcllbommmfn |
설명 | Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars… |
파일 크기 | 341 KB |
설치 횟수 | 59 |
현재 버전 | 0.3 |
최근 업데이트 | 2015-02-10 |
출시 날짜 | 2015-02-10 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | koukougogo |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.airbnblocal.com |
도움말 페이지 URL | http://www.airbnblocal.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Airbnb Local", "version": "0.3", "permissions": [ "background", "contextMenus", "tabs", "clipboardWrite", "https:\/\/cdn.leafletjs.com\/*", "https:\/\/api.tiles.mapbox.com\/*", "https:\/\/code.jquery.com\/*", "https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/leaflet\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.airbnblocal.com; object-src 'self'", "web_accessible_resources": [ "images\/*", "js\/*.js", "css\/*.css" ], "browser_action": { "default_icon": "static\/button.png", "default_title": "Airbnb Local - dev version" }, "icons": { "16": "static\/button.png", "48": "static\/button.png", "128": "static\/button.png", "19": "static\/button.png" }, "content_scripts": [ { "js": [ "js\/jquery-2.1.3.min.js", "js\/jquery-ui.min.js", "js\/leaflet.js", "js\/contentscript.js" ], "css": [ "css\/jquery-ui.min.css", "css\/jquery-ui.theme.min.css", "css\/leaflet.css", "css\/abLocalStyle2.css", "css\/jquery-ui.structure.min.css" ], "matches": [ "https:\/\/www.airbnb.com\/*" ] } ] } |