Exibe os últimos 5 feeds do nosso blog.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Feed do Blog Aprenda e Crie",
"homepage_url": "https://www.aprendaecrie.com/",
"author": "Blog Aprenda e Crie",
"version": "1.1",
"description": "Exibe os últimos 5 feeds do nosso blog.",
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "src/icon/icon.png"
},
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "src/js/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/js/scripts.js"
],
"css": [
"src/css/style.css"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}