Scrolller Extended

Various additional features to scrolller.com

Scrolller Extended란 무엇입니까?

Scrolller Extended은(는) Nachtalb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Various additional features to scrolller.com"입니다.

확장 프로그램 스크린샷

screenshot

Scrolller Extended 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}