BeoBear2

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

Hvad er BeoBear2?

BeoBear2 er en Chrome-udvidelse udviklet af https://eterna2.net, og dens hovedfunktion er "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download BeoBear2-udvidelses-CRX-fil

Download BeoBear2-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn BeoBear2 BeoBear2
ID hdnglhflieelaccghjdfnngihfjaellj
Officiel URL https://chromewebstore.google.com/detail/beobear2/hdnglhflieelaccghjdfnngihfjaellj
Beskrivelse This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.
Filstørrelse 325 KB
Antal Installationer 35
Nuværende Version 2.0.3
Senest Opdateret 2014-01-02
Udgivelsesdato 2014-01-02
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler https://eterna2.net
Betalingsmetode free
Understøttede Sprog 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"
    }
}