Airbnb Local
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…
Was ist Airbnb Local?
Airbnb Local ist eine Chrome-Erweiterung, die von koukougogo entwickelt wurde, und ihr Hauptmerkmal ist "Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…".
Erweiterungsscreenshots
Airbnb Local-Erweiterungs-CRX-Datei herunterladen
Laden Sie Airbnb Local-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars Recommend cheaper and nearby apartments
Grundlegende Informationen zur Erweiterung
Name | |
ID | fmdapmnldajjokehoagkmkcllbommmfn |
Offizielle URL | https://chrome.google.com/webstore/detail/airbnb-local/fmdapmnldajjokehoagkmkcllbommmfn |
Beschreibung | Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars… |
Dateigröße | 341 KB |
Installationsanzahl | 59 |
Aktuelle Version | 0.3 |
Letztes Update | 2015-02-10 |
Veröffentlichungsdatum | 2015-02-10 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | koukougogo |
Zahlungsart | free |
Erweiterungswebsite | http://www.airbnblocal.com |
Hilfeseite URL | http://www.airbnblocal.com |
Unterstützte Sprachen | 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\/*" ] } ] } |