Airbnb Review Summarizer

Summarize Airbnb reviews to be useful

Airbnb Review Summarizerคืออะไร?

Airbnb Review Summarizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย radicalblind และคุณลักษณะหลักของมันคือ "Summarize Airbnb reviews to be useful"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Airbnb Review Summarizer

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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'"
    }
}