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.”。
扩展截图
下载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
扩展基本信息
名称 | |
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" } ] } |