Comfortable RPubs
Extension for comfortable reading the articles of RPubs.
Vad är Comfortable RPubs?
Comfortable RPubs är en Chrome-tillägg utvecklad av hoxo_m, och dess huvudfunktion är "Extension for comfortable reading the articles of RPubs.".
Tilläggsskärmbilder
Ladda ner Comfortable RPubs-förlängningens CRX-fil
Ladda ner Comfortable RPubs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | noighcjkbkmjmpmfopmpmefoiaddgijo |
| Officiell webbadress | https://chromewebstore.google.com/detail/comfortable-rpubs/noighcjkbkmjmpmfopmpmefoiaddgijo |
| Beskrivning | Extension for comfortable reading the articles of RPubs. |
| Filstorlek | 114 KB |
| Antal Installationer | 252 |
| Aktuell Version | 0.0.6 |
| Senast Uppdaterad | 2014-07-06 |
| Publiceringsdatum | 2014-07-05 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | hoxo_m |
| Betalningssätt | free |
| Stödda Språk | 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"
} | |