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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reload All tabs using keyboard shortcut (alt + shift + r), context menu, browser action button, or startup."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Reload All Tabs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}