BeoBear2

This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.

Was ist BeoBear2?

BeoBear2 ist eine Chrome-Erweiterung, die von https://eterna2.net entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

BeoBear2-Erweiterungs-CRX-Datei herunterladen

Laden Sie BeoBear2-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A simple chrome extension that allows the user to quickly view and download IMPORTANT images within a thread in a forum.

--------------------------------------
FEATURES
--------------------------------------
i. Crawl the thread for Images

ii. Frontal Face detection (Good for discovering Images with faces only) ( based on lib from https://github.com/mtschirs/js-objectdetect )

iii. One-button Download for all discovered Images

iv. Can also be used to preview any links for Images

--------------------------------------
HOW TO USE
--------------------------------------
i. Right Click on a LINK and select "BeoBear2".

ii. Select "Beo Images" or "Beo XMM"

iii. A panel will appear at the bottom of the screen with the thumbnails

iv. Mouse Over to see the large Image

v. Click to open up the Page with the Image

vi. Click on the 'x' to REMOVE Image from Download List

vii. Click on 'Download ALL' to download all discovered Images

--------------------------------------
IMPORTANT NOTES
--------------------------------------
i. Privacy: No information is transferred to anywhere, everything is local.

ii. Performance: I have not incorporated a scheduler for BIG threads. Use it on BIG threads at your own risk as memory usage may spike as it crawl through too many pages in too short a time.                    

Grundlegende Informationen zur Erweiterung

Name BeoBear2 BeoBear2
ID hdnglhflieelaccghjdfnngihfjaellj
Offizielle URL https://chromewebstore.google.com/detail/beobear2/hdnglhflieelaccghjdfnngihfjaellj
Beschreibung This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.
Dateigröße 325 KB
Installationsanzahl 35
Aktuelle Version 2.0.3
Letztes Update 2014-01-02
Veröffentlichungsdatum 2014-01-02
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler https://eterna2.net
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BeoBear2",
    "short_name": "BeoBear2",
    "description": "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.",
    "version": "2.0.3",
    "permissions": [
        "downloads",
        "contextMenus",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Beo this thread!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "css": [
                "mystyle.css"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "jquery-migrate-1.2.1.min.js",
                "objectdetect\/objectdetect.js",
                "objectdetect\/objectdetect.frontalface.js",
                "objectdetect\/objectdetect.upperbody.js",
                "objectdetect\/jquery.objectdetect.js",
                "myscripts.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-1.10.2.min.js",
        "jquery-1.10.2.min.map",
        "jquery-migrate-1.2.1.min.js",
        "objectdetect\/objectdetect.js",
        "objectdetect\/objectdetect.frontalface.js",
        "objectdetect\/objectdetect.upperbody.js",
        "objectdetect\/jquery.objectdetect.js",
        "mystyle.css",
        "myscripts.js",
        "404.png"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}