Property Extra
The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.
Cos'è Property Extra?
Property Extra è un'estensione di Chrome sviluppata da Property Extra, e la sua funzione principale è "The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Property Extra
Scarica i file di estensione Property Extra in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Property Extra |
ID | lgdhpokicnmaaelmkeekkecjbkhenldp |
URL Ufficiale | https://chromewebstore.google.com/detail/property-extra/lgdhpokicnmaaelmkeekkecjbkhenldp |
Descrizione | The Property Extra browser extension provides listing price history. Currently compatible with rightmove.co.uk. |
Dimensione del File | 2.38 MB |
Conteggio Installazioni | 175 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2020-12-31 |
Data di Pubblicazione | 2020-04-09 |
Sviluppatore | Property Extra |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://propertyextra.net |
URL della Pagina della Politica sulla Privacy | https://propertyextra.net/privacy-policy |
Lingue Supportate | 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" ] } |