Easy to RSS
Retreive RSS feeds URLs from WebSite, RSSHub supported
Что такое Easy to RSS?
Easy to RSS - это расширение Chrome, разработанное https://idealclover.top, и его основная функция - "Retreive RSS feeds URLs from WebSite, RSSHub supported".
Снимки экрана расширения
Скачать файл CRX расширения Easy to RSS
Скачайте файлы расширений Easy to RSS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
pre release version of Easy-to-RSS
https://github.com/idealclover/Easy-to-RSS
主要功能:获取网页RSS,复制到剪贴板并打开该RSS网页。与RSSHub联动 Основная информация о расширении
| Название | |
| ID | hbcmpkcpbnecinpngdnfbnknfkdpdfli |
| Официальный URL | https://chromewebstore.google.com/detail/easy-to-rss/hbcmpkcpbnecinpngdnfbnknfkdpdfli |
| Описание | Retreive RSS feeds URLs from WebSite, RSSHub supported |
| Размер файла | 21.43 KB |
| Количество установок | 2,686 |
| Текущая Версия | 0.2.0 |
| Последнее Обновление | 2018-12-18 |
| Дата публикации | 2018-12-17 |
| Рейтинг | 4.38/5 Всего 8 оценок |
| Разработчик | https://idealclover.top |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Easy to RSS",
"description": "Retreive RSS feeds URLs from WebSite, RSSHub supported",
"version": "0.2.0",
"author": "@idealclover",
"homepage_url": "https:\/\/github.com\/idealclover\/Easy-to-RSS",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"clipboardWrite",
"activeTab",
"storage",
"tabs"
],
"browser_action": {
"default_icon": "img\/icon_default.png",
"default_popup": "popup.html",
"default_title": "Click to view RSS feeds for this page"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/content.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"icons": {
"128": "img\/icon_128.png"
}
} | |