Bulky

Takes screenshots of multiples tabs, in bulk!

Was ist Bulky?

Bulky ist eine Chrome-Erweiterung, die von https://bulky.dev entwickelt wurde, und ihr Hauptmerkmal ist "Takes screenshots of multiples tabs, in bulk!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Bulky-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bulky-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

                        Bulky, as its name says, excels at taking screenshots in bulk. In bulk, meaning taking screenshots of multiple browser tabs. The process is simple, you select the tabs you want to screenshot, and in what mode, and then just press a button. The output is simply downloaded for you immediately or you are allowed to view the screenshots in the screenshot gallery.                    

Grundlegende Informationen zur Erweiterung

Name Bulky Bulky
ID chneeiddjpmojnpmpkofoccdhoilghpi
Offizielle URL https://chromewebstore.google.com/detail/bulky/chneeiddjpmojnpmpkofoccdhoilghpi
Beschreibung Takes screenshots of multiples tabs, in bulk!
Dateigröße 1.65 MB
Installationsanzahl 165
Aktuelle Version 0.1.0
Letztes Update 2020-10-18
Veröffentlichungsdatum 2020-10-18
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler https://bulky.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.bulky.dev
Hilfeseite URL https://www.bulky.dev
URL der Datenschutzrichtlinien-Seite https://www.betteryoutube.live/policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "homepage_url": "http:\/\/localhost:8080\/",
    "description": "Takes screenshots of multiples tabs, in bulk!",
    "default_locale": "en",
    "permissions": [
        "debugger",
        "storage",
        "tabs",
        ""
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_extName__",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/tab.js"
            ]
        }
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "version": "0.1.0",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}