This chrome browser extension applies a custom style of the Bitgrip corporate identity to browser based presentations like Atlassian Confluence Moderation.
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked" in the top left corner
- Select the folder containing this extension
- The extension should now be installed and active for Bitgrip Confluence pages
- Add styles for light mode with a switch in the extension popup
- Add styles for other presentation tools like Miro?
- Publish the extension to the Chrome Web Store in private mode
This section provides guidance for AI coding agents (or developers using AI tools) to set up and work with the Bitgrip presentation styles extension project.
manifest.json
: Chrome extension manifest file.styles.css
: Main stylesheet for applying Bitgrip corporate identity.res/
: Resource directory for assets (images, icons, etc.).README.md
: Project documentation.
-
Clone the repository
git clone <REPO_URL> cd <REPO_FOLDER>
-
Review the codebase
- Inspect
manifest.json
for extension configuration. - Update or extend
styles.css
to modify the appearance. - Add or update assets in the
res/
directory as needed.
- Inspect
-
Testing changes
- After making changes, reload the extension in Chrome via
chrome://extensions/
> "Reload" button.
- After making changes, reload the extension in Chrome via
-
Dependencies
- This project does not use build tools or external dependencies by default. All source files are static and directly loaded by Chrome.
- If automation or additional tooling is required, instructions should be added to this section.
- When adding new features or modifying files, maintain the existing coding style and structure.
- Ensure that all changes are compatible with Chrome extension requirements.
- Update this README with any new setup or build steps if the project evolves.