Realtor.com Tools

The extension adds useful links to listings on Realtor.com, including: - Internet Service Providers - Google Search - Google Maps…

Realtor.com Toolsคืออะไร?

Realtor.com Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rmbaumer และคุณลักษณะหลักของมันคือ "The extension adds useful links to listings on Realtor.com, including: - Internet Service Providers - Google Search - Google Maps…"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Realtor.com Tools

ดาวน์โหลดไฟล์ส่วนขยาย Realtor.com Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The extension adds useful links to listings on Realtor.com, including:

- Internet Service Providers
- Google Search
- Google Maps

Not affiliated with Realtor.com

To request a new feature, leave a note in a review and I will implement the new feature as time allows.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Realtor.com Tools Realtor.com Tools
ID aahinbcdofnajjoonjgnedbcmjfegblp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/realtorcom-tools/aahinbcdofnajjoonjgnedbcmjfegblp
คำอธิบาย The extension adds useful links to listings on Realtor.com, including: - Internet Service Providers - Google Search - Google Maps…
ขนาดไฟล์ 29.52 KB
จำนวนการติดตั้ง 289
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2019-11-15
วันที่เผยแพร่ 2019-11-15
ผู้พัฒนา rmbaumer
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Realtor.com Tools",
    "version": "0.5",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.realtor.com\/*",
                "https:\/\/realtor.com\/*",
                "https:\/\/broadbandmap.fcc.gov\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.realtor.com\/*",
        "https:\/\/realtor.com\/*",
        "https:\/\/broadbandmap.fcc.gov\/*"
    ]
}