您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide specific car makes/models from listing results
Ever notice how car shopping sites let you filter **for* specific makes and models, but none of them let you say "show me EVERYTHING EXCEPT Nissan Rogues"?*
This frustration led to Not-In-My-Garage: a Tampermonkey userscript that finally lets you banish those unwanted vehicles from your car shopping experience.
A simple but powerful tool that automatically hides listings for vehicles you never want to see again. Because some cars just don't deserve a spot in your garage.
Edit the blockedModels
array in the script settings to customize which vehicles you want to hide:
const blockedModels = [
'buick encore',
'dodge journey',
'ford ecosport',
// Add your automotive nemeses here
];
Quick guide to add a new car shopping website:
sitesConfig
object:const siteConfig = {
'www.example.com': {
container: '.listing-card', // CSS selector for each listing that will be hidden
textElement: '.vehicle-title', // CSS selector in which to search for a blocked model
}
};
Disclaimer: This script is not affiliated with any of the supported car shopping websites.
Found a bug? Want to add support for another car site? PRs welcome! https://github.com/shipit-0fux/not-in-my-garage/tree/main
MIT License - See LICENSE file for details
Disclaimer: This script is not affiliated with any of the supported car shopping websites.