Comfortable RPubs
Extension for comfortable reading the articles of RPubs.
What is Comfortable RPubs?
Comfortable RPubs is a Chrome extension developed by hoxo_m, and its main feature is "Extension for comfortable reading the articles of RPubs.".
Extension Screenshots
Download Comfortable RPubs Extension CRX File
Download Comfortable RPubs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Comfortable RPubs |
ID | noighcjkbkmjmpmfopmpmefoiaddgijo |
Official URL | https://chromewebstore.google.com/detail/comfortable-rpubs/noighcjkbkmjmpmfopmpmefoiaddgijo |
Description | Extension for comfortable reading the articles of RPubs. |
File Size | 114 KB |
Installation Count | 252 |
Current Version | 0.0.6 |
Last Updated | 2014-07-06 |
Publish Date | 2014-07-05 |
Rating | 5.00/5 Total 2 Ratings |
Developer | hoxo_m |
Payment Type | free |
Supported Languages | 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" } |