Compare commits
	
		
			No commits in common. "aecde226ed2a85fa73a44a177f0d951342667388" and "788e7ac80eb56378afb98edda977f0bb07b905cb" have entirely different histories. 
		
	
	
		
			aecde226ed
			...
			788e7ac80e
		
	
		| 
						 | 
					@ -1,10 +0,0 @@
 | 
				
			||||||
setTimeout(() => {
 | 
					 | 
				
			||||||
    let items = document.getElementsByClassName("s-result-item");
 | 
					 | 
				
			||||||
    for(let n = 0; n < items.length; n++) {
 | 
					 | 
				
			||||||
        let item = items[n];
 | 
					 | 
				
			||||||
        let isInternational = item.innerHTML.includes("01siZb3GpxL");
 | 
					 | 
				
			||||||
        if(isInternational) {
 | 
					 | 
				
			||||||
            item.style.display = "none";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}, 500);
 | 
					 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								icons/144.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 8.9 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/168.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 10 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/192.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 12 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/48.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 3.4 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/72.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 4.8 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/96.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 6.1 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								icons/icon.png
								
								
								
								
							
							
						
						| 
		 Before Width: | Height: | Size: 19 KiB  | 
| 
						 | 
					@ -1,32 +0,0 @@
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
    "manifest_version": 2,
 | 
					 | 
				
			||||||
    "name": "dropshipping-detox",
 | 
					 | 
				
			||||||
    "version": "1.0",
 | 
					 | 
				
			||||||
    "description": "Oculta todos los productos de \"importación\" de MercadoLibre México y Amazon México.",
 | 
					 | 
				
			||||||
    "icons": {
 | 
					 | 
				
			||||||
        "48": "icons/48.png",
 | 
					 | 
				
			||||||
        "72": "icons/72.png",
 | 
					 | 
				
			||||||
        "96": "icons/96.png",
 | 
					 | 
				
			||||||
        "144": "icons/144.png",
 | 
					 | 
				
			||||||
        "168": "icons/168.png",
 | 
					 | 
				
			||||||
        "192": "icons/192.png"
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    "content_scripts": [
 | 
					 | 
				
			||||||
        {
 | 
					 | 
				
			||||||
            "matches": [
 | 
					 | 
				
			||||||
                "*://*.mercadolibre.com.mx/*"
 | 
					 | 
				
			||||||
            ],
 | 
					 | 
				
			||||||
            "js": [
 | 
					 | 
				
			||||||
                "mercadolibre-detox.js"
 | 
					 | 
				
			||||||
            ]
 | 
					 | 
				
			||||||
        },
 | 
					 | 
				
			||||||
        {
 | 
					 | 
				
			||||||
            "matches": [
 | 
					 | 
				
			||||||
                "*://*.amazon.com.mx/*"
 | 
					 | 
				
			||||||
            ],
 | 
					 | 
				
			||||||
            "js": [
 | 
					 | 
				
			||||||
                "amazon-detox.js"
 | 
					 | 
				
			||||||
            ]
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    ]
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,10 +0,0 @@
 | 
				
			||||||
setTimeout(() => {
 | 
					 | 
				
			||||||
    let items = document.getElementsByClassName("ui-search-layout__item");
 | 
					 | 
				
			||||||
    for(let n = 0; n < items.length; n++) {
 | 
					 | 
				
			||||||
        let item = items[n];
 | 
					 | 
				
			||||||
        let isInternational = item.innerHTML.includes("international");
 | 
					 | 
				
			||||||
        if(isInternational) {
 | 
					 | 
				
			||||||
            item.style.display = "none";
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
}, 500);
 | 
					 | 
				
			||||||