Advanced Extension Reloader

Reload an unpacked extension with one click, hotkey or automatically.

Τι είναι το Advanced Extension Reloader;

Το Advanced Extension Reloader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.facebook.com/browservery, και η κύρια λειτουργία του είναι "Reload an unpacked extension with one click, hotkey or automatically.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Advanced Extension Reloader

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

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

                        Documentation: https://github.com/loftyshaky/advanced-extension-reloader/blob/master/README.md#content

Advanced Extension Reloader is a browser extension that reloads unpacked extensions you develop for you. By installing this extension you will be able to reload all your unpacked extensions at once with a click on the browser action icon. You will also be able to:

★ Limit reload only to an extension with a specific id.

★ Reload extension(s) with a hotkey.

★ Set up an automatic reload on your extension's files change with the help of supplementary packages Advanced Extension Reloader Watch 1 (if you develop an extension without a bundler) or Advanced Extension Reloader Watch 2 (if you use Webpack).

★ Make Advanced Extension Reloader play a sound when your extension(s) is reloaded.

★ Make Advanced Extension Reloader reload the current tab or all tabs after your extension(s) is reloaded (useful for content script).

After reloading your extension(s) Advanced Extension Reloader will reopen all closed during reloading tabs (for example, the options page of your extension(s)).
----------------------------------------------------------------
Permissions:
Read your browsing history
Allows the extension to reopen tabs closed during the reload.

Manage your apps, extensions, and themes
Allows the extension to reload extensions.
----------------------------------------------------------------
Follow my Facebook page (more extensions): https://www.facebook.com/browservery                    

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

Όνομα Advanced Extension Reloader Advanced Extension Reloader
ID hagknokdofkmojolcpbddjfdjhnjdkae
Επίσημο URL https://chromewebstore.google.com/detail/advanced-extension-reload/hagknokdofkmojolcpbddjfdjhnjdkae
Περιγραφή Reload an unpacked extension with one click, hotkey or automatically.
Μέγεθος Αρχείου 1.12 MB
Αριθμός Εγκαταστάσεων 378
Τρέχουσα Έκδοση 1.7.0
Τελευταία Ενημέρωση 2024-01-14
Ημερομηνία Δημοσίευσης 2021-08-26
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://www.facebook.com/browservery
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.facebook.com/browservery
Διεύθυνση URL της Σελίδας Βοήθειας https://groups.google.com/g/browservery
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.7.0",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "64": "icon64.png"
        }
    },
    "name": "Advanced Extension Reloader",
    "description": "__MSG_description__",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "tabs",
        "management",
        "offscreen",
        "contextMenus"
    ],
    "commands": {
        "reload_main": {
            "description": "__MSG_reload_main_hotkey__"
        },
        "suspend_or_resume_automatic_reload": {
            "description": "__MSG_suspend_or_resume_automatic_reload_hotkey__"
        },
        "reload_1": {
            "description": "__MSG_reload_1_hotkey__"
        },
        "reload_2": {
            "description": "__MSG_reload_2_hotkey__"
        },
        "reload_3": {
            "description": "__MSG_reload_3_hotkey__"
        },
        "reload_4": {
            "description": "__MSG_reload_4_hotkey__"
        },
        "reload_5": {
            "description": "__MSG_reload_5_hotkey__"
        },
        "reload_6": {
            "description": "__MSG_reload_6_hotkey__"
        },
        "reload_7": {
            "description": "__MSG_reload_7_hotkey__"
        },
        "reload_8": {
            "description": "__MSG_reload_8_hotkey__"
        },
        "reload_9": {
            "description": "__MSG_reload_9_hotkey__"
        },
        "reload_10": {
            "description": "__MSG_reload_10_hotkey__"
        },
        "reload_11": {
            "description": "__MSG_reload_11_hotkey__"
        },
        "reload_12": {
            "description": "__MSG_reload_12_hotkey__"
        },
        "reload_13": {
            "description": "__MSG_reload_13_hotkey__"
        },
        "reload_14": {
            "description": "__MSG_reload_14_hotkey__"
        },
        "reload_15": {
            "description": "__MSG_reload_15_hotkey__"
        },
        "reload_16": {
            "description": "__MSG_reload_16_hotkey__"
        },
        "reload_17": {
            "description": "__MSG_reload_17_hotkey__"
        },
        "reload_18": {
            "description": "__MSG_reload_18_hotkey__"
        },
        "reload_19": {
            "description": "__MSG_reload_19_hotkey__"
        },
        "reload_20": {
            "description": "__MSG_reload_20_hotkey__"
        }
    }
}