Reload tabs

Reload all of the current window's tabs

Τι είναι το Reload tabs;

Το Reload tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον msskmlrn, και η κύρια λειτουργία του είναι "Reload all of the current window's tabs".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Reload tabs

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

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

                        Reload all of the current window's tabs by pressing the icon or using the Ctrl+Shift+E shortcut.

You can change the default shortcut to something else by opening the extensions page (chrome://extensions/) and clicking the keyboard shortcuts link in the bottom right corner of the page. From there, find the Reload tabs extension and enter a keyboard shortcut of your choosing.

The source code can be found at https://github.com/msskmlrn/reload-tabs.                    

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

Όνομα Reload tabs Reload tabs
ID onncmmefekihehgnljddnkbbiplicomg
Επίσημο URL https://chromewebstore.google.com/detail/reload-tabs/onncmmefekihehgnljddnkbbiplicomg
Περιγραφή Reload all of the current window's tabs
Μέγεθος Αρχείου 6.75 KB
Αριθμός Εγκαταστάσεων 31
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2014-06-06
Ημερομηνία Δημοσίευσης 2014-06-06
Προγραμματιστής msskmlrn
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/msskmlrn/reload-tabs
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload tabs",
    "short_name": "Reload tabs",
    "version": "1.0",
    "description": "Reload all of the current window's tabs",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "reload.js"
        ],
        "persistent": false
    },
    "commands": {
        "reload-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Reload tabs"
        }
    },
    "permissions": [
        "tabs"
    ]
}