Property Extra
The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.
Was ist Property Extra?
Property Extra ist eine Chrome-Erweiterung, die von Property Extra entwickelt wurde, und ihr Hauptmerkmal ist "The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.".
Erweiterungsscreenshots
Property Extra-Erweiterungs-CRX-Datei herunterladen
Laden Sie Property Extra-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Property Extra |
ID | lgdhpokicnmaaelmkeekkecjbkhenldp |
Offizielle URL | https://chromewebstore.google.com/detail/property-extra/lgdhpokicnmaaelmkeekkecjbkhenldp |
Beschreibung | The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk. |
Dateigröße | 2.38 MB |
Installationsanzahl | 175 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2020-12-31 |
Veröffentlichungsdatum | 2020-04-09 |
Entwickler | Property Extra |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://propertyextra.net |
URL der Datenschutzrichtlinien-Seite | https://propertyextra.net/privacy-policy |
Unterstützte Sprachen | 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" ] } |