Scrolller Extended

Various additional features to scrolller.com

Τι είναι το Scrolller Extended;

Το Scrolller Extended είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nachtalb, και η κύρια λειτουργία του είναι "Various additional features to scrolller.com".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Scrolller Extended

Λήψη αρχείων επέκτασης Scrolller Extended σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Scrolller is a neat little website to browser media files from Reddit.

This chrome extensions adds some more functionality to Scrolller. More information about Scrolller can be found on it's about page here.

Scrolller already adds a few keyboard shortcuts for easy navigation in the slideshow, dis/liking subreddits and opening subreddits in a new tabs (on scrolller not Reddit).

For a full list of the keyboard shortcuts use h to toggle the help menu.

Keymap:
These are the shortcuts added by this extension without the ones already existing on the website.

CTRL + s / CMD + s / c	Save current image in slideshow
h	Toggle help menu
o	Open image in reddit
p	Toggle pics only mode
g	Toggle gifs only mode

Changelog:
0.1.1 (2019-06-11)
------------------
- Fix "scrolller" in some locations like extension name (3 "l" instead of 2)
- Fix only thumbnail of videos were saved not the actual video

0.1.0 (2019-06-10)
------------------
- Use shortcut CTRL+s,CMD+s or c to save image in slideshow
- Add help menu, show/hide with h
- Open image on reddit with o
- Add toggler for pics and gifs with p and g respectively

Copyright:
Made by Nachtalb and licensed under the GPLv3.0 LICENSE.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Scrolller Extended Scrolller Extended
ID jkhgkkhkokkebajnhmogconodclkopdh
Επίσημο URL https://chromewebstore.google.com/detail/scrolller-extended/jkhgkkhkokkebajnhmogconodclkopdh
Περιγραφή Various additional features to scrolller.com
Μέγεθος Αρχείου 14.09 KB
Αριθμός Εγκαταστάσεων 571
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2021-03-04
Ημερομηνία Δημοσίευσης 2019-06-11
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Nachtalb
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Nachtalb/ScrolllerExtended
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Nachtalb/ScrolllerExtended/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrolller Extended",
    "description": "Various additional features to scrolller.com",
    "version": "0.1.2",
    "permissions": [
        "downloads"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "assets\/images\/icon16.png",
        "48": "assets\/images\/icon48.png",
        "128": "assets\/images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scrolller.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/html\/help-dialog.html",
        "assets\/css\/help-iframe.css"
    ]
}