shitemove

This extension replaces estate agent clichés with something a little more truthful.

Qu'est-ce que shitemove ?

shitemove est une extension Chrome développée par angryflatcap, et sa fonction principale est "This extension replaces estate agent clichés with something a little more truthful.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension shitemove

Téléchargez les fichiers d'extension shitemove au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom shitemove shitemove
ID khnnjllikjnfpdmbbiapgdmfpekfgbon
URL Officiel https://chrome.google.com/webstore/detail/shitemove/khnnjllikjnfpdmbbiapgdmfpekfgbon
Description This extension replaces estate agent clichés with something a little more truthful.
Taille du Fichier 45.64 KB
Nombre d'Installations 160
Version Actuelle 0.1.1
Dernière Mise à Jour 2017-10-01
Date de Publication 2017-10-01
Évaluation 5.00/5 Total 4 Évaluations
Développeur angryflatcap
Type de Paiement free
URL de la Page d'Aide https://shitemove.angryflatcap.com
Langues Prises en Charge 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"
        }
    ]
}