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 |
| 官方網址 | 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"
} | |