IS24 Price Per Area
Show price per m² on search result, shortlist, and expose pages of ImmobilienScout24. Not affiliated with ImmobilienScout24.
IS24 Price Per Areaคืออะไร?
IS24 Price Per Area เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stegschreck และคุณลักษณะหลักของมันคือ "Show price per m² on search result, shortlist, and expose pages of ImmobilienScout24. Not affiliated with ImmobilienScout24."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IS24 Price Per Area
ดาวน์โหลดไฟล์ส่วนขยาย IS24 Price Per Area ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chrome Extension for showing the price per m² on the search result pages, the shortlist page, and the expose pages of ImmobilienScout24. This extension is designed to only be active on https://*.immobilienscout24.de. The implementation details of ImmobilienScout24 make it necessary to include a 2 seconds delay before displaying the price per area value. While being on ImmobilienScout24, you can choose to highlight the calculated price per area with colors. To configure the style of highlighting and the thresholds, just click on the icon of the extension in the Chrome menu. In the popup that will open, you can adjust the settings. You can adjust the threshold values for the coloring by clicking on the icon of the extension. In the options menu you can also change the style of highlighting (font color or background color) - or completely disable it. This project is an open source project. Please find the license agreement here: https://github.com/StegSchreck/is24-price-per-area/blob/master/LICENSE This project is not affiliated with ImmobilienScout24.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | IS24 Price Per Area |
ID | mafijcfncjjmoajphbldbodbkefghgkd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/is24-price-per-area/mafijcfncjjmoajphbldbodbkefghgkd |
คำอธิบาย | Show price per m² on search result, shortlist, and expose pages of ImmobilienScout24. Not affiliated with ImmobilienScout24. |
ขนาดไฟล์ | 235 KB |
จำนวนการติดตั้ง | 105 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2022-08-09 |
วันที่เผยแพร่ | 2022-08-09 |
ผู้พัฒนา | stegschreck |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/StegSchreck/is24-price-per-area |
URL หน้าช่วยเหลือ | https://github.com/StegSchreck/is24-price-per-area/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "IS24 Price Per Area", "version": "1.0", "description": "Show price per m\u00b2 on search result, shortlist, and expose pages of ImmobilienScout24. Not affiliated with ImmobilienScout24.", "author": "Sebastian Schreck", "homepage_url": "https:\/\/github.com\/StegSchreck\/is24-price-per-area", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "declarativeContent", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "IS24 Price Per Area", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.immobilienscout24.de\/*" ], "run_at": "document_end", "js": [ "main.js", "page_objects\/searchResultPage.js", "page_objects\/shortlistPage.js", "page_objects\/exposePage.js", "util.js" ] } ] } |