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
扩展基本信息
名称 | Comfortable RPubs |
ID | noighcjkbkmjmpmfopmpmefoiaddgijo |
官方URL | 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" } |