BeoBear2

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

What is BeoBear2?

BeoBear2 is a Chrome extension developed by https://eterna2.net, and its main feature is "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download BeoBear2 Extension CRX File

Download BeoBear2 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name BeoBear2 BeoBear2
ID hdnglhflieelaccghjdfnngihfjaellj
Official URL https://chromewebstore.google.com/detail/beobear2/hdnglhflieelaccghjdfnngihfjaellj
Description This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.
File Size 325 KB
Installation Count 35
Current Version 2.0.3
Last Updated 2014-01-02
Publish Date 2014-01-02
Rating 3.67/5 Total 3 Ratings
Developer https://eterna2.net
Payment Type free
Supported Languages 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"
    }
}