BeoBear2

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

Co je BeoBear2?

BeoBear2 je rozšíření Chrome vyvinuté https://eterna2.net, a jeho hlavní funkcí je „This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření BeoBear2

Stáhněte si soubory rozšíření BeoBear2 ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název BeoBear2 BeoBear2
ID hdnglhflieelaccghjdfnngihfjaellj
Oficiální URL https://chromewebstore.google.com/detail/beobear2/hdnglhflieelaccghjdfnngihfjaellj
Popis This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.
Velikost souboru 325 KB
Počet instalací 35
Aktuální Verze 2.0.3
Poslední Aktualizace 2014-01-02
Datum Vydání 2014-01-02
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář https://eterna2.net
Typ Platby free
Podporované Jazyky 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"
    }
}