Bulk URL Opener Extension

Open multiple URLs at once

Τι είναι το Bulk URL Opener Extension;

Το Bulk URL Opener Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://melanto.com, και η κύρια λειτουργία του είναι "Open multiple URLs at once".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bulk URL Opener Extension

Λήψη αρχείων επέκτασης Bulk URL Opener Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Bulk URL Opener Extension just lets you open multiple URLs at once (in new tabs or windows). 

Usage: Enter each URL in new line (you can paste the list or import urls from file) and click the "Open All" button. The app will the open all the pages in separate tabs or windows (depending on your settings). 

Some of the options: 
* Load URLs from file; Export links to file
* Extract urls from text (the tool will try to find valid links in whatever text you provide)
* Open in tabs, windows or group by host (to group your links in separate windows for each domain)
* You can set delay (in seconds) between opening pages
* Open part of the current list

The difference between this extension and other similar extensions is that if an URL doesn't include scheme, it will default to HTTPS. In other words, you may skip the protocol part for "http(s)://" sites and enter only the meaningful part. For example -- if you type "domain.com" it will be automatically translated to "http://domain.com". All similar extensions that I tested required fully qualified URL which wasn't very convenient for me and that's actually the main reason I made this tool.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bulk URL Opener Extension Bulk URL Opener Extension
ID hgenngnjgfkdggambccohomebieocekm
Επίσημο URL https://chromewebstore.google.com/detail/bulk-url-opener-extension/hgenngnjgfkdggambccohomebieocekm
Περιγραφή Open multiple URLs at once
Μέγεθος Αρχείου 67.08 KB
Αριθμός Εγκαταστάσεων 188,275
Τρέχουσα Έκδοση 2.1.0.0
Τελευταία Ενημέρωση 2024-02-19
Ημερομηνία Δημοσίευσης 2017-11-20
Αξιολόγηση 4.37/5 Συνολικά 76 Αξιολογήσεις
Προγραμματιστής https://melanto.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://melanto.com/apps/bulk-url-opener/
URL της Σελίδας Πολιτικής Απορρήτου https://melanto.com/privacy.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bulk URL Opener Extension",
    "short_name": "Open URLs",
    "version": "2.1.0.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/melanto.com\/apps\/bulk-url-opener\/",
    "description": "Open multiple URLs at once",
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_title": "Bulk URL Opener",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "incognito": "spanning",
    "offline_enabled": true,
    "options_page": "settings.html",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Open the URL Opener"
        }
    }
}