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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    ]
}