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 |
| 官方網址 | 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"
]
}
]
} | |