SMB Dark Mode

This extension enables dark mode for the Check Point SMB WebUI and includes various other WebUI hacks

SMB Dark Modeคืออะไร?

SMB Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ron Klein และคุณลักษณะหลักของมันคือ "This extension enables dark mode for the Check Point SMB WebUI and includes various other WebUI hacks"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SMB Dark Mode

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

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

                        DISCLAIMER: This is not an official extension by Check Point Software

change log:
* 3.0.5-3.0.8- more css enhancements
* 3.0.4- more css enhancements, fix the issue of shortkeys being applied while the main search box is in focus
* 3.0.3- some css enhancements
* 3.0.2- change default key for AI to "ai", move the WebUI Options page link a little so that it does not overlap the SMP connections indicator
* 3.0.1:
- add shortkeys for TP settings page, a shortkey per section (default shortkey for IPS Protections List was changed from "ip" to "iP". "ip" is now used for IPS settings).
- prevent the extension db from being unnecessarily loaded in non-WebUI pages
* 3.0.0:
- Introducing an Option Page with support for importing/exporting settings (a new "storage" permission is now required by the extension)
  - option to disable dark mode without having to disable the extension altogether
  - option to hide the link from WebUI to the Options page
  - option to enable/disable the pop-in dialogues animation introduced in previous version
  - option to avoid auto log-out
  - option to auto install policy after upload
  - shortkeys support (hotstrings) for navigating between WebUI pages
---------------
* 2.0.4: pop-in animation for dialogues, css enchantments for R81.10.10 (login page image, svg images/icons, top bar and more)
* 2.0.3: darken and blur background when dialogues are open
* 2.0.2: support dark mode also when the Chrome flag "#enable-force-dark" is enabled
---------------                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SMB Dark Mode SMB Dark Mode
ID oflpfjfamdmbjieeflhhcdmmemcpbbcd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/smb-dark-mode/oflpfjfamdmbjieeflhhcdmmemcpbbcd
คำอธิบาย This extension enables dark mode for the Check Point SMB WebUI and includes various other WebUI hacks
ขนาดไฟล์ 28.4 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 3.0.8
อัปเดตครั้งล่าสุด 2024-02-29
วันที่เผยแพร่ 2022-08-24
ผู้พัฒนา Ron Klein
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "3.0.8",
    "name": "SMB Dark Mode",
    "description": "This extension enables dark mode for the Check Point SMB WebUI and includes various other WebUI hacks",
    "options_page": "options\\options.html",
    "icons": {
        "16": "images\/16.jpg",
        "48": "images\/48.jpg",
        "128": "images\/128.jpg"
    },
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "options\/db_options.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}