Airbnb Local
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…
Wat is Airbnb Local?
Airbnb Local is een Chrome-extensie ontwikkeld door koukougogo, en de belangrijkste functie is "Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars…".
Extensie Screenshots
Download het CRX-bestand van de extensie Airbnb Local
Download Airbnb Local-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars Recommend cheaper and nearby apartments
Basisinformatie over de Extensie
Naam | |
ID | fmdapmnldajjokehoagkmkcllbommmfn |
Officiële URL | https://chrome.google.com/webstore/detail/airbnb-local/fmdapmnldajjokehoagkmkcllbommmfn |
Beschrijving | Display neighborhood information of an Airbnb apartment in NYC, including distance to subway, safety, nearby restaurants and bars… |
Bestandsgrootte | 341 KB |
Aantal Installaties | 59 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2015-02-10 |
Publicatiedatum | 2015-02-10 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | koukougogo |
Betalingswijze | free |
Extensiewebsite | http://www.airbnblocal.com |
Help Pagina-URL | http://www.airbnblocal.com |
Ondersteunde Talen | 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\/*" ] } ] } |