Work Offline
Brings work offline and online in the web page level to your browser
Work Offline란 무엇입니까?
Work Offline은(는) emano.waldeck에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Brings work offline and online in the web page level to your browser"입니다.
확장 프로그램 스크린샷
Work Offline 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension brings "Work Offline" button to your browser. When the extension is in the offline mode, no web request can be sent or received by web pages. Note that still, your extension can use the internet. So let's say you have a web-based email client and an email notifier extension. The web-based one is disconnected, but the extension one is connected. Notes: 1. You can enable and disable the offline mode right from the toolbar button. This is a toggle button. 2. If you have open tabs, those tabs cannot send and receive network requests in the offline mode 3. You can still browse local HTML files while you are in the offline mode, though these pages cannot anything to any web servers Change Log: version 0.1.2 1. Offline mode per tab. You can now use the right-click context menu item for page action to make a single tab or multiple tabs go to the offline mode. It is still possible to use the toolbar button to make all tabs work in offline mode too. version 0.1.3 1. supports navigator.onLine 2. supports "online" and "offline" events 3. respects global offline and online browser level events
확장 프로그램 기본 정보
이름 | Work Offline |
ID | gcjdagaoojgeilcobhibkgbodajcojda |
공식 URL | https://chromewebstore.google.com/detail/work-offline/gcjdagaoojgeilcobhibkgbodajcojda |
설명 | Brings work offline and online in the web page level to your browser |
파일 크기 | 54.53 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.2.1 |
최근 업데이트 | 2021-10-04 |
출시 날짜 | 2019-07-21 |
평점 | 3.35/5 총 20 개의 평점 |
개발자 | emano.waldeck |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://add0n.com/work-offline.html |
도움말 페이지 URL | http://add0n.com/work-offline.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.2.1", "name": "Work Offline", "description": "Brings work offline and online in the web page level to your browser", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" }, "homepage_url": "https:\/\/add0n.com\/work-offline.html", "permissions": [ "storage", "contextMenus", "declarativeNetRequest", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "worker.js" }, "action": { "default_icon": { "16": "data\/icons\/disabled\/16.png", "32": "data\/icons\/disabled\/32.png", "48": "data\/icons\/disabled\/48.png" } }, "commands": { "_execute_action": { "description": "Press the action button" }, "toggle.offline": { "description": "Toggle Offline Mode for This Tab" } }, "web_accessible_resources": [ { "resources": [ "\/data\/offline\/index.html" ], "matches": [ "*:\/\/*\/*" ] } ] } |