Inspect and view changes in Leer El Pais 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",
"name": "Leer El Pais",
"version": "0.0.1",
"description": "Permite leer las notas de los portales de el país de forma facil, TV Show, Ovación, El País, etc.. ",
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"*://*.elpais.com.uy/*"
],
"run_at": "document_start",
"js": [
"js/loadUnlockCode.js"
]
}
],
"permissions": [
"declarativeContent"
],
"icons": {
"16": "img/ext-logo-16.png",
"32": "img/ext-logo-32.png",
"48": "img/ext-logo-48.png",
"128": "img/ext-logo-128.png"
},
"web_accessible_resources": [
{
"resources": [
"js/unlockPost.js"
],
"matches": [
"*://*.elpais.com.uy/*"
]
}
],
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}