Work Offline

Brings work offline and online in the web page level to your browser

Work Offlineคืออะไร?

Work Offline เป็นส่วนขยายของ Chrome ที่พัฒนาโดย emano.waldeck และคุณลักษณะหลักของมันคือ "Brings work offline and online in the web page level to your browser"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Work Offline

ดาวน์โหลดไฟล์ส่วนขยาย Work Offline ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}