Property Extra
The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.
Property Extra là gì?
Property Extra là một tiện ích mở rộng Chrome được phát triển bởi Property Extra, và tính năng chính của nó là "The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Property Extra
Tải xuống các tệp mở rộng Property Extra dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The Property Extra browser extension enhances property listing websites by adding property listing price history to search results. Users can also like/dislike properties and add notes - all accessible from the extension's icon in the browser
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Property Extra |
ID | lgdhpokicnmaaelmkeekkecjbkhenldp |
URL Chính Thức | https://chromewebstore.google.com/detail/property-extra/lgdhpokicnmaaelmkeekkecjbkhenldp |
Mô tả | The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk. |
Kích Thước Tệp | 2.38 MB |
Số Lần Cài Đặt | 175 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2020-12-31 |
Ngày Phát Hành | 2020-04-09 |
Nhà Phát Triển | Property Extra |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://propertyextra.net |
URL Trang Chính Sách Bảo Mật | https://propertyextra.net/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Property Extra", "author": "Property Extra", "version": "1.2.1", "homepage_url": "https:\/\/propertyextra.net", "description": "The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.", "content_security_policy": "script-src 'self'; object-src 'self'", "icons": { "16": "assets\/img\/propertyextra-16x16.png", "48": "assets\/img\/propertyextra-48x48.png", "96": "assets\/img\/propertyextra-96x96.png", "128": "assets\/img\/propertyextra-128x128.png" }, "permissions": [ "alarms", "storage", "activeTab", "*:\/\/*.propertyextra.net\/*", "*:\/\/*.rightmove.co.uk\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.propertyextra.net\/*" ], "js": [ "content_scripts\/propertyextra_net\/comms_content_script@document_start.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.propertyextra.net\/*" ], "js": [ "content_scripts\/propertyextra_net\/comms_content_script@document_idle.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*.rightmove.co.uk\/*\/find.*", "*:\/\/*.rightmove.co.uk\/*\/map.*" ], "js": [ "content_scripts\/rightmove_co_uk\/find_content_script@document_start.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.rightmove.co.uk\/*\/find.*" ], "js": [ "content_scripts\/rightmove_co_uk\/find_content_script@document_idle.js" ], "run_at": "document_idle", "css": [ "assets\/css\/find_content_script@document_idle.css" ] }, { "matches": [ "*:\/\/*.rightmove.co.uk\/*\/*.*" ], "exclude_matches": [ "*:\/\/*.rightmove.co.uk\/*\/map.*", "*:\/\/*.rightmove.co.uk\/*\/find.*", "*:\/\/*.rightmove.co.uk\/property-*\/property-*", "*:\/\/*.rightmove.co.uk\/commercial-property-*\/property-*", "*:\/\/*.rightmove.co.uk\/new-homes-for-*\/property-*" ], "js": [ "content_scripts\/rightmove_co_uk\/determine_content_script@document_start.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.rightmove.co.uk\/*\/map.*" ], "js": [ "content_scripts\/rightmove_co_uk\/map_content_script@document_idle.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*.rightmove.co.uk\/property-*\/property-*", "*:\/\/*.rightmove.co.uk\/commercial-property-*\/property-*", "*:\/\/*.rightmove.co.uk\/new-homes-for-*\/property-*", "*:\/\/*.rightmove.co.uk\/properties\/*" ], "js": [ "content_scripts\/rightmove_co_uk\/property_content_script@document_idle.js" ], "css": [ "assets\/css\/property_content_script@document_idle.css" ], "run_at": "document_idle" } ], "background": { "page": "background\/background.html" }, "browser_action": { "default_icon": { "16": "assets\/img\/propertyextra-16x16.png", "24": "assets\/img\/propertyextra-24x24.png", "32": "assets\/img\/propertyextra-32x32.png" }, "default_title": "Property Extra", "default_popup": ".\/popup\/popup.html" }, "options_ui": { "page": ".\/options\/options.html", "open_in_tab": false }, "web_accessible_resources": [ "assets\/img\/*", "assets\/css\/*", "file-manifest.json" ] } |