Erinome RSS Detector

RSS Detector for Erinome RSS extension.

Co to jest Erinome RSS Detector?

Erinome RSS Detector to rozszerzenie Chrome opracowane przez Erinome, a jego główną funkcją jest „RSS Detector for Erinome RSS extension.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Erinome RSS Detector

Pobierz pliki rozszerzeń Erinome RSS Detector 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

                        This extension helps to determine whether there are RSS feeds on pages you visit and what their URLs are. It is useful for setting up Erinome RSS reader extension, where you would need to know the addresses of your feeds to add them for the first time.                    

Podstawowe informacje o rozszerzeniu

Nazwa Erinome RSS Detector Erinome RSS Detector
ID ebopppnmnflknmniiaggblaekaahmohl
Oficjalny URL https://chromewebstore.google.com/detail/erinome-rss-detector/ebopppnmnflknmniiaggblaekaahmohl
Opis RSS Detector for Erinome RSS extension.
Rozmiar pliku 24.82 KB
Liczba instalacji 480
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2018-06-09
Data Publikacji 2018-06-09
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Erinome
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Erinome RSS Detector",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/detector_scan.js"
            ]
        }
    ],
    "description": "RSS Detector for Erinome RSS extension.",
    "manifest_version": 2,
    "version": "1.0.2",
    "background": {
        "scripts": [
            "scripts\/detector_bg.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "RSS",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    }
}