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…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Realtor.com Tools
قم بتنزيل ملفات الامتداد Realtor.com Tools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| 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\/*"
]
} | |