Compare commits

..

No commits in common. "aecde226ed2a85fa73a44a177f0d951342667388" and "788e7ac80eb56378afb98edda977f0bb07b905cb" have entirely different histories.

10 changed files with 0 additions and 52 deletions

View File

@ -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);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -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"
]
}
]
}

View File

@ -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);