Burro

A Chrome Extension for Reddit

Τι είναι το Burro;

Το Burro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jesse Patching, και η κύρια λειτουργία του είναι "A Chrome Extension for Reddit".

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

screenshot
screenshot

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

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

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

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