Comfortable RPubs

Extension for comfortable reading the articles of RPubs.

Co to jest Comfortable RPubs?

Comfortable RPubs to rozszerzenie Chrome opracowane przez hoxo_m, a jego główną funkcją jest „Extension for comfortable reading the articles of RPubs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Comfortable RPubs

Pobierz pliki rozszerzeń Comfortable RPubs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Comfortable RPubs Comfortable RPubs
ID noighcjkbkmjmpmfopmpmefoiaddgijo
Oficjalny URL https://chromewebstore.google.com/detail/comfortable-rpubs/noighcjkbkmjmpmfopmpmefoiaddgijo
Opis Extension for comfortable reading the articles of RPubs.
Rozmiar pliku 114 KB
Liczba instalacji 252
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2014-07-06
Data Publikacji 2014-07-05
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper hoxo_m
Typ Płatności free
Obsługiwane Języki 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"
}