Reload All Tabs

Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.

Reload All Tabs क्या है?

Reload All Tabs https://mohamedmansour.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reload All Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        If you want to remove the browser action button (top right), just right click and choose "Hide button".

FOLLOW ME ON TWITTER: https://twitter.com/mohamedmansour
SOURCE CODE: http://goo.gl/dGDD (GitHub)

Ways to Reload All Tabs:
 - Right click, choose "Reload this window", you can add more options, read next section.
 - The Blue arrow Icon on the Extension Bar top right (Click on it)
 - Keyboard Shortcut: Alt+Shift+R (you need to initially set it manually)

Add more Context Menus Configurable in Options (enable whatever you want):
 - Reload all tabs in current window
 - Reload all tabs in all windows
 - Reload only pinned or unpinned tabs in current window
 - Reload all tabs to the left or right
 - Reload tabs on startup
 - Allow clearing (bypass) cache while reload.
 - Close tabs to the left or right

Modify the Keyboard Shortcut:
 - To make it even more secure, we removed all content script permissions, and used chrome commands instead.
 - Visit chrome://extensions/shortcuts in Chrome to update the combination to anything you want!                    

एक्सटेंशन की मूल जानकारी

नाम Reload All Tabs Reload All Tabs
ID midkcinmplflbiflboepnahkboeonkam
आधिकारिक URL https://chromewebstore.google.com/detail/reload-all-tabs/midkcinmplflbiflboepnahkboeonkam
विवरण Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.
फ़ाइल का आकार 24.38 KB
स्थापना संख्या 111,178
वर्तमान संस्करण 5.0.0
अंतिम अपडेट 2021-05-06
प्रकाशन तिथि 2020-06-01
रेटिंग 4.39/5 कुल 229 रेटिंग्स
डेवलपर https://mohamedmansour.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://github.com/mohamedmansour/reload-all-tabs-extension/
सहायता पृष्ठ URL http://github.com/mohamedmansour/reload-all-tabs-extension/issues
गोपनीयता नीति पृष्ठ URL https://mohamedmansour.com/extensions/privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reload All Tabs",
    "version": "5.0.0",
    "manifest_version": 3,
    "description": "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "action": {
        "default_icon": "img\/icon128.png",
        "default_title": "Reload All Tabs"
    },
    "background": {
        "service_worker": "reload_controller.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "commands": {
        "reload": {
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "mac": "Command+Shift+R"
            },
            "description": "Toggle reload"
        }
    }
}