A Chrome extension that automatically sets wiki pages to reading mode on Lark/Feishu Office platforms.
- Automatically switches wiki pages to reading mode
- Configurable domain support
- Easy configuration through options page
- Works across page navigation without reloading
- Visit Chrome Web Store
- Click "Add to Chrome"
- Confirm the installation
- Download the latest release ZIP file
- Extract the ZIP file to a folder
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the extracted folder
After installation, the extension will automatically switch wiki pages to reading mode when you visit any of the configured domains.
By default, the extension works on the following domains:
https://bytedance.larkoffice.com/wiki/*
https://bytedance.sg.larkoffice.com/wiki/*
To configure domains:
- Click on the extension icon in your Chrome toolbar
- Click "Open Domain Settings"
- Add, remove, or reset domains as needed
src/
├── manifest.json # Extension manifest
├── content.js # Content script that handles the page modification
├── background.js # Background script for initialization
├── popup.html # Popup UI
├── popup.js # Popup logic
├── options.html # Options page UI
├── options.js # Options page logic
└── icons/ # Extension icons
├── icon16.png
├── icon48.png
└── icon128.png
- Clone the repository
- Install dependencies:
npm install
- Build the extension:
node build.js
- The built extension will be in the
dist
folder and packaged as a ZIP file
The extension:
- Detects when you visit a wiki page on configured domains
- Finds the mode switch control
- Automatically clicks the "reading mode" option
- Continues monitoring for URL changes to handle navigation
This extension requires the following permissions:
activeTab
: To interact with the current tabstorage
: To store domain configurations<all_urls>
: To support custom domain configurations
Contributions are welcome! Please feel free to submit a Pull Request.
This extension is not affiliated with or endorsed by ByteDance or Lark/Feishu. It is an independent tool created to enhance the user experience when reading wiki pages.