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 |
| Eメール | [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"
} | |