Airbnb Add Total
Display total.
什么是Airbnb Add Total?
Airbnb Add Total是由http://www.helmutgranda.com开发的Chrome扩展程序,该扩展的主要功能是“Display total.”。
下载Airbnb Add Total扩展crx文件
下载Airbnb Add Total扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension adds @Airbnb fee to listing subtotal and then shows cost per guest per comment here: https://twitter.com/soopa/status/417084486992416768
扩展基本信息
名称 | |
ID | lpcpilfpbndjcbkockblohhldjblbdjj |
官方URL | https://chrome.google.com/webstore/detail/airbnb-add-total/lpcpilfpbndjcbkockblohhldjblbdjj |
简介 | Display total. |
文件大小 | 83.61 KB |
安装次数 | 10 |
当前版本 | 1.0.0 |
更新时间 | 2013-12-30 |
上架时间 | 2013-12-30 |
开发者 | http://www.helmutgranda.com |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Airbnb Add Total", "version": "1.0.0", "description": "Display total.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "airbnb add total", "default_popup": "src\/popup.html" }, "permissions": [ "http:\/\/www.airbnb.com\/rooms\/", "https:\/\/www.airbnb.com\/rooms\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.airbnb.com\/rooms\/*" ], "css": [ "src\/contentStyle.css" ], "js": [ "lib\/jquery.min.js", "src\/contentScript.js" ] } ] } |