shitemove
This extension replaces estate agent clichés with something a little more truthful.
Was ist shitemove?
shitemove ist eine Chrome-Erweiterung, die von angryflatcap entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces estate agent clichés with something a little more truthful.".
Erweiterungsscreenshots
shitemove-Erweiterungs-CRX-Datei herunterladen
Laden Sie shitemove-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
When on a UK property listing, shitemove will take words such as 'stunning' and 'stylish' and replace them with words like 'passable' and 'tacky'. By default it will work on foxtons.co.uk, gumtree.com, openrent.co.uk, primelocation.com, rightmove.co.uk, and zoopla.co.uk. Others can be added via the options page, or if you're feeling brave you can turn it on for all sites. For more information, visit shitemove.angryflatcap.com
Grundlegende Informationen zur Erweiterung
Name | |
ID | khnnjllikjnfpdmbbiapgdmfpekfgbon |
Offizielle URL | https://chrome.google.com/webstore/detail/shitemove/khnnjllikjnfpdmbbiapgdmfpekfgbon |
Beschreibung | This extension replaces estate agent clichés with something a little more truthful. |
Dateigröße | 45.64 KB |
Installationsanzahl | 160 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2017-10-01 |
Veröffentlichungsdatum | 2017-10-01 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | angryflatcap |
Zahlungsart | free |
Hilfeseite URL | https://shitemove.angryflatcap.com |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "shitemove", "description": "This extension replaces estate agent clich\u00e9s with something a little more truthful.", "version": "0.1.1", "author": "Angry Flat Cap", "background": { "scripts": [ "getsettings.js", "dictionary.js", "background.js" ] }, "icons": { "16": "icons\/house-16.png", "32": "icons\/house-32.png", "48": "icons\/house-48.png", "128": "icons\/house-128.png", "256": "icons\/house-256.png" }, "browser_action": { "default_icon": { "16": "icons\/house-disabled-16.png", "32": "icons\/house-disabled-32.png", "48": "icons\/house-disabled-48.png", "128": "icons\/house-disabled-128.png", "256": "icons\/house-disabled-256.png" }, "default_popup": "popups\/off.html" }, "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |