Comfortable RPubs
Extension for comfortable reading the articles of RPubs.
什麼是Comfortable RPubs?
Comfortable RPubs是由hoxo_m開發的Chrome擴展程式,該擴展的主要功能是“Extension for comfortable reading the articles of RPubs.”。
擴展截圖
下載Comfortable RPubs擴展crx文件
下載Comfortable RPubs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
1. Change CSS for more comfortable reading.
2. Change hyperlink target to "_blank" to open new tab.
3. Search articles
4. RSS feed
5. Solved the problem that mixing HTTPS with HTTP 擴展基本資訊
| 名稱 | |
| ID | noighcjkbkmjmpmfopmpmefoiaddgijo |
| 官方網址 | https://chromewebstore.google.com/detail/comfortable-rpubs/noighcjkbkmjmpmfopmpmefoiaddgijo |
| 簡介 | Extension for comfortable reading the articles of RPubs. |
| 檔案大小 | 114 KB |
| 安裝次數 | 252 |
| 目前版本 | 0.0.6 |
| 更新時間 | 2014-07-06 |
| 上架時間 | 2014-07-05 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | hoxo_m |
| 付費類型 | free |
| 支援的語言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Comfortable RPubs",
"description": "__MSG_extDescription__",
"version": "0.0.6",
"page_action": {
"default_icon": ".\/icon_016.png",
"default_title": "__MSG_popupTitle__",
"default_popup": ".\/popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/rpubs.com\/*",
"http:\/\/rstudio-pubs-static.s3.amazonaws.com\/*",
"https:\/\/rpubs.com\/*\/*"
],
"js": [
"jquery-2.1.0.js",
"myscript.js"
],
"all_frames": true
}
],
"permissions": [
"tabs"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": {
"16": ".\/icon_016.png",
"48": ".\/icon_048.png",
"128": ".\/icon_128.png"
},
"background": {
"page": ".\/background.html"
},
"default_locale": "en"
} | |