Burro

A Chrome Extension for Reddit

Burro란 무엇입니까?

Burro은(는) Jesse Patching에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension for Reddit"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Features:
 * Mark all links on the current page as read by clicking a button/tab in the header
 * Mark all links on the current page as read by clicking "next" at the bottom of the page
 * Mark individual links as read
 * More relaxed visual style
 * Fixed header, so it follows as you scroll the page
 * View all images as thumbnails, and mouseover for the full sized image
   - Optionally, hide all NSFW thumbnails
   - Currently supports direct links to images as well as:
      - imgur.com / i.imgur.com
      - gfycat.com
      - i.redd.it / i.reddituploads.com
      - youtube.com / youtu.be
      - vimeo.com

Usage:
* Install the Burro extension
* On the Burro Options page, click the features you want to enable

Source available at: https://github.com/taeram/burro                    

확장 프로그램 기본 정보

이름 Burro Burro
ID bcimcgagkdildnhcmjhljonhionglmcb
공식 URL https://chrome.google.com/webstore/detail/burro/bcimcgagkdildnhcmjhljonhionglmcb
설명 A Chrome Extension for Reddit
파일 크기 223 KB
설치 횟수 18
현재 버전 1.4.7
최근 업데이트 2016-11-03
출시 날짜 2016-11-03
평점 5.00/5 총 1 개의 평점
개발자 Jesse Patching
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/taeram/burro
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Burro",
    "version": "1.4.7",
    "manifest_version": 2,
    "description": "A Chrome Extension for Reddit",
    "homepage_url": "https:\/\/github.com\/taeram\/burro",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "options_page": "src\/options_custom\/index.html",
    "permissions": [
        "history",
        "http:\/\/reddit.com\/*",
        "https:\/\/reddit.com\/*",
        "http:\/\/*.reddit.com\/*",
        "https:\/\/*.reddit.com\/*",
        "https:\/\/www.youtube.com\/oembed*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/reddit.com\/*",
                "https:\/\/reddit.com\/*",
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/jquery\/jquery.min.map"
    ]
}