BeoBear2

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

Apa itu BeoBear2?

BeoBear2 adalah ekstensi Chrome yang dikembangkan oleh https://eterna2.net, dan fitur utamanya adalah "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi BeoBear2

Unduh file ekstensi BeoBear2 dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BeoBear2 BeoBear2
ID hdnglhflieelaccghjdfnngihfjaellj
URL Resmi https://chromewebstore.google.com/detail/beobear2/hdnglhflieelaccghjdfnngihfjaellj
Deskripsi This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.
Ukuran File 325 KB
Jumlah Instalasi 35
Versi Saat Ini 2.0.3
Terakhir Diperbarui 2014-01-02
Tanggal Publikasi 2014-01-02
Penilaian 3.67/5 Total 3 Penilaian
Pengembang https://eterna2.net
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}