RSS Reader Style
Reduce the margin RSS Reader.
什么是RSS Reader Style?
RSS Reader Style是由https://hi0a.com开发的Chrome扩展程序,该扩展的主要功能是“Reduce the margin RSS Reader.”。
扩展截图
下载RSS Reader Style扩展crx文件
下载RSS Reader Style扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Change the layout of RSS Reader.
Displays narrow row spacing.
compact view for title only mode.
feedly.com
digg.com
my.yahoo.co.jp
Feedly Suggestion
http://feedly.uservoice.com/forums/192636-suggestions 扩展基本信息
| 名称 | |
| ID | gialkacknhjboidnkgappheioemdcona |
| 官方URL | https://chromewebstore.google.com/detail/rss-reader-style/gialkacknhjboidnkgappheioemdcona |
| 简介 | Reduce the margin RSS Reader. |
| 文件大小 | 93.6 KB |
| 安装次数 | 1,778 |
| 当前版本 | 1.6.1.3 |
| 更新时间 | 2015-06-26 |
| 上架时间 | 2015-06-26 |
| 评分 | 4.00/5 共26次评分 |
| 开发者 | https://hi0a.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://plus.google.com/104695002981847637487/ |
| 帮助页面URL | https://plus.google.com/104695002981847637487/ |
| 隐私政策页面URL | https://hi0a.com/privacy |
| 支持的语言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RSS Reader Style",
"version": "1.6.1.3",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_extensiondescription__",
"icons": {
"128": "icon.png"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/feedly.com\/*",
"https:\/\/feedly.com\/*",
"http:\/\/cloud.feedly.com\/*",
"https:\/\/cloud.feedly.com\/*",
"http:\/\/www.feedly.com\/*",
"https:\/\/www.feedly.com\/*"
],
"js": [
"jquery.js",
"script-feedly.js"
],
"css": [
"style-feedly.css"
],
"run_at": "document_idle"
},
{
"matches": [
"http:\/\/digg.com\/reader",
"http:\/\/digg.com\/reader\/*",
"https:\/\/digg.com\/reader",
"https:\/\/digg.com\/reader\/*"
],
"css": [
"style-digg.css"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.google.com\/reader\/*",
"http:\/\/www.google.com\/reader\/*",
"https:\/\/www.google.co.jp\/reader\/*",
"http:\/\/www.google.co.jp\/reader\/*"
],
"css": [
"style-google.css"
],
"run_at": "document_idle"
},
{
"matches": [
"http:\/\/my.yahoo.co.jp\/*"
],
"js": [
"jquery.js",
"script-myyahoo.js"
],
"css": [
"style-myyahoo.css"
],
"run_at": "document_idle"
}
],
"page_action": {
"default_icon": "icon.png",
"default_title": "RSS Reader Style"
},
"options_page": "options.html"
} | |