Skip to content

Instantly share code, notes, and snippets.

@nd-dew
nd-dew / .md
Created March 30, 2026 15:03
Privacy_odoo_confid_voip_extension.md

Privacy Policy for Odoo Config VoIP Extension

Last updated: March 24, 2026

Overview

The Odoo Config VoIP Extension ("the Extension") is an open-source productivity tool designed to help developers and implementers quickly configure Voice over IP (VoIP) and Google Cloud Storage credentials on their local or hosted Odoo instances.

We take your privacy seriously. This policy explains what data the Extension handles and how it is protected.

@nd-dew
nd-dew / .md
Created March 25, 2026 13:23
PRIVACY.md

Privacy Policy for Odoo PR Extension

Last updated: March 24, 2026 The Odoo PR Extension ("the Extension") is committed to protecting your privacy. This policy explains what data we collect and how we use it.

1. Data Collection

The Extension does not collect or transmit any personally identifiable information (PII) to external servers.

2. Permissions and Usage

The Extension requests the following permissions for the reasons listed:

  • Storage: To store your user preferences (Odoo URL, API Keys, Theme, Font Size) locally on your device.
# Put that into your zshrc or bashrc, enjoy
extract_tickets_from_string_and_open_them_in_chrome() {
# This function, allows you to quickly open multiple Odoo task URLs in Chrome.
# When you run the script, it prompts you to paste any text containing Odoo task URLs and then press Ctrl-D to finish.
echo "Please paste your text with Odoo task URLs, then press Ctrl-D when finished:"
input=$(cat)
ids=$(echo "$input" | grep -oP "(project\.task\/|\/tasks\/)[0-9]+\b" | grep -oP '[0-9]+')
BROWSER_CMD="google-chrome"
echo "\nOpening tasks in Chrome..."