A Google Apps Script that provides password protection for sensitive columns in Google Sheets, preventing unauthorized access and modifications.
💡 If you find this script helpful, please consider giving it a star on GitHub! ⭐
- 🔒 Password-protected column hiding
- ⏳ Temporary access with auto-lock after 5 minutes
- 🛡️ Prevents manual unhiding of protected columns
- 🚨 Automatic protection restoration if tampering is detected
- 📱 User-friendly interface with emoji icons
- 🔑 Secure password storage using Script Properties
- A Google Account
- Access to Google Sheets
- Basic understanding of Google Apps Script
- Open your Google Sheet
- Go to
Extensions > Apps Script
- Copy the contents of
Code.js
into the script editor - Replace the protected columns in the
PROTECTED_COLUMNS
array with your desired column numbers:const PROTECTED_COLUMNS = [3, 5, 7]; // Example: columns C, E, G
- Save the script
- Run the
initialSetup
function - Set your desired password when prompted
After installation, you'll see a new menu item "🔐 Data Protection" in your Google Sheet with two options:
- 🔒 Lock Columns: Manually lock and hide protected columns
- 🔓 Temporary Unlock: Enter password to temporarily view protected columns
- Protected columns will automatically hide after 5 minutes of being revealed
- Only the sheet owner can modify protection settings
- The script will automatically detect and prevent unauthorized unhiding attempts
You can modify these settings in the code:
- Change protected columns in
PROTECTED_COLUMNS
array - Modify the visibility timeout (default: 5 minutes) in the
temporaryUnhide
function - Customize alert messages and menu items
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Open a Pull Request
If you find this script useful, please consider:
- Giving it a star on GitHub
- Sharing it with others who might benefit
- Contributing to its improvement
This project is licensed under the MIT License - see the LICENSE file for details.
If you have any questions or suggestions, feel free to open an issue on GitHub.
Created with ❤️ by DTDucas aka Duong Tran
🌟 Did this help your workflow? Show your support by starring this repository! ⭐