Makes RSS easy to read.
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": "RSS Reader",
"version": "1.1.0",
"manifest_version": 2,
"description": "Makes RSS easy to read.",
"minimum_chrome_version": "21",
"icons": {
"32": "icons/32.png",
"128": "icons/128.png"
},
"web_accessible_resources": [
"css/content.css"
],
"background": {
"scripts": [
"thirdParty/jquery-3.4.1.min.js",
"js/background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"activeTab"
]
}