Reddit Scrolls Hover Scroll

This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.

Co to jest Reddit Scrolls Hover Scroll?

Reddit Scrolls Hover Scroll to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reddit Scrolls Hover Scroll

Pobierz pliki rozszerzeń Reddit Scrolls Hover Scroll 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 will look through the subreddits /r/Scrolls and /r/ScrollsTrading and replace any iteration of a card name with a hoverable link. When hovered an image of the scroll will appear.

It makes use of the api from scrolldier.com.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reddit Scrolls Hover Scroll Reddit Scrolls Hover Scroll
ID bcodpcpfhhhngkpcejdipfhpofdkiogo
Oficjalny URL https://chromewebstore.google.com/detail/reddit-scrolls-hover-scro/bcodpcpfhhhngkpcejdipfhpofdkiogo
Opis This extension searches through the page on reddit.com/r/Scrolls for scroll names and creates an image of the scroll on hover.
Rozmiar pliku 73.49 KB
Liczba instalacji 19
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-12-31
Data Publikacji 2014-12-31
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Scrolls Hover Scroll",
    "description": "This extension searches through the page on reddit.com\/r\/Scrolls for scroll names and creates an image of the scroll on hover.",
    "version": "1.0",
    "permissions": [
        "http:\/\/www.reddit.com\/*",
        "http:\/\/api.scrolldier.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/r\/scrolls\/*",
                "*:\/\/www.reddit.com\/r\/Scrolls\/*",
                "*:\/\/*.reddit.com\/r\/scrollstrading\/*",
                "*:\/\/*.reddit.com\/r\/ScrollsTrading\/*"
            ],
            "js": [
                "jquery.js",
                "cs.js",
                "scrolls_hover.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "scrolls_hover_icon_16.png",
        "48": "scrolls_hover_icon_48.png",
        "128": "scrolls_hover_icon.png"
    }
}