shitemove

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

什麼是shitemove?

shitemove是由angryflatcap開發的Chrome擴展程式,該擴展的主要功能是“This extension replaces estate agent clichés with something a little more truthful.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載shitemove擴展crx文件

下載shitemove擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 shitemove shitemove
ID khnnjllikjnfpdmbbiapgdmfpekfgbon
官方網址 https://chrome.google.com/webstore/detail/shitemove/khnnjllikjnfpdmbbiapgdmfpekfgbon
簡介 This extension replaces estate agent clichés with something a little more truthful.
檔案大小 45.64 KB
安裝次數 160
目前版本 0.1.1
更新時間 2017-10-01
上架時間 2017-10-01
評分 5.00/5 共 4 次評分
開發者 angryflatcap
付費類型 free
說明頁面URL https://shitemove.angryflatcap.com
支援的語言 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"
        }
    ]
}