Airbnb Review Summarizer

Summarize Airbnb reviews to be useful

什麼是Airbnb Review Summarizer?

Airbnb Review Summarizer是由radicalblind開發的Chrome擴展程式,該擴展的主要功能是“Summarize Airbnb reviews to be useful”。

擴展截圖

screenshot
screenshot

下載Airbnb Review Summarizer擴展crx文件

下載Airbnb Review Summarizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Renters don't always have time to go through all the listing reviews to decide if the listing is a right fit. 
This extension helps renters quickly summarize the reviews to be relevant to our preferences.                    

擴展基本資訊

名稱 Airbnb Review Summarizer Airbnb Review Summarizer
ID gglfjedidmkhekcniiggodppplefhcbn
官方網址 https://chromewebstore.google.com/detail/airbnb-review-summarizer/gglfjedidmkhekcniiggodppplefhcbn
簡介 Summarize Airbnb reviews to be useful
檔案大小 93.95 KB
安裝次數 53
目前版本 0.0.3
更新時間 2023-06-06
上架時間 2023-05-31
開發者 radicalblind
電子郵箱 [email protected]
付費類型 free
擴展官網 https://airbnbreviewsummarizer.vercel.app/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Airbnb Review Summarizer",
    "version": "0.0.3",
    "description": "Summarize Airbnb reviews to be useful",
    "action": {
        "default_icon": ".\/assets\/airbnb_openai.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/airbnb_openai.png",
        "48": ".\/assets\/airbnb_openai.png",
        "128": ".\/assets\/airbnb_openai.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/airbnb.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/airbnb.com\/*\/reviews*",
                "https:\/\/*.airbnb.com\/*\/reviews*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}