Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Get RSS",
"description": "Get RSS feed URLs from a website",
"version": "0.3.1",
"author": "@kpripper",
"homepage_url": "https:webcode.pp.ua",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"clipboardWrite",
"activeTab",
"storage",
"tabs"
],
"action": {
"default_icon": "img\/icon_default.png",
"default_popup": "popup.html",
"default_title": "Click to view RSS feeds"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"128": "img\/icon_128.png"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}