Inspect and view changes in Mercado Livre Horários Postagens source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Mercado Livre Horários Postagens",
"version": "0.2",
"description": "Mostra os horários limites de postagem na tela principal",
"icons": {
"48": "logo.png",
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"https://*.mercadolivre.com.br/vendas*",
"https://*.mercadolivre.com.br/resumo*",
"https://*.mercadolivre.com.br/perguntas*",
"https://*.mercadolivre.com.br/anuncios*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}