├── .eslintignore ├── .gitignore ├── tsconfig.json ├── .github ├── dependabot.yml ├── workflows │ └── workflow.yml └── ISSUE_TEMPLATE │ ├── feature_request.yml │ └── database_correction.yml ├── .eslintrc ├── package.json ├── README.md ├── index.ts ├── LICENSE ├── dist └── vpn_services.json └── source ├── companies.json └── vpn_services.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | trackerdb.sql 4 | node_modules -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "strict": true, 5 | "lib": ["ESNext"], 6 | } 7 | } -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Maintain dependencies for GitHub Actions 4 | - package-ecosystem: "github-actions" 5 | directory: "/" 6 | schedule: 7 | interval: "monthly" 8 | 9 | # Maintain dependencies for NPM 10 | - package-ecosystem: "npm" 11 | directory: "/" 12 | schedule: 13 | interval: "monthly" 14 | versioning-strategy: widen 15 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "airbnb-base", 4 | "airbnb-typescript/base" 5 | ], 6 | "parserOptions": { 7 | "project": "./tsconfig.json" 8 | }, 9 | "env": { 10 | "browser": false, 11 | "node": true, 12 | "jest": true 13 | }, 14 | "rules": { 15 | "@typescript-eslint/indent": [ 16 | "error", 17 | 4 18 | ] 19 | } 20 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "whotracksme-converter", 3 | "version": "1.0.0", 4 | "description": "A tool that converts the Whotracks.me database to a simple JSON format.", 5 | "main": "index.js", 6 | "scripts": { 7 | "convert": "ts-node index.ts", 8 | "lint": "eslint ." 9 | }, 10 | "author": "AdGuard", 11 | "license": "CC-BY-SA-4.0", 12 | "devDependencies": { 13 | "@types/node": "^20.3.1", 14 | "@typescript-eslint/eslint-plugin": "^5.60.0", 15 | "@typescript-eslint/parser": "^5.60.0", 16 | "eslint": "^8.43.0", 17 | "eslint-config-airbnb-base": "^15.0.0", 18 | "eslint-config-airbnb-typescript": "^17.0.0", 19 | "eslint-plugin-import": "^2.27.5", 20 | "ts-node": "^10.9.1", 21 | "typescript": "^5.3.2" 22 | }, 23 | "dependencies": { 24 | "consola": "^3.1.0", 25 | "csv-stringify": "^6.4.4", 26 | "zod": "^3.21.4" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- 1 | name: Build 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | schedule: 8 | # run build at 10:00 every Monday 9 | - cron: "0 10 * * MON" 10 | 11 | env: 12 | NODE_VERSION: 18.x 13 | 14 | jobs: 15 | lint: 16 | runs-on: ubuntu-latest 17 | steps: 18 | - uses: actions/checkout@v4 19 | 20 | - name: Setup Node.js 21 | uses: actions/setup-node@v4 22 | with: 23 | node-version: ${{ env.NODE_VERSION }} 24 | 25 | - name: Lint 26 | run: | 27 | yarn install 28 | yarn lint 29 | 30 | deploy: 31 | runs-on: ubuntu-latest 32 | steps: 33 | - uses: actions/checkout@v4 34 | 35 | - name: Setup Node.js 36 | uses: actions/setup-node@v4 37 | with: 38 | node-version: ${{ env.NODE_VERSION }} 39 | 40 | - name: Run conversion 41 | run: | 42 | yarn install 43 | yarn convert 44 | 45 | - name: Deploy 46 | if: github.ref == 'refs/heads/main' && github.repository == 'AdguardTeam/companiesdb' 47 | run: | 48 | git config --global user.name 'GH action' 49 | git config --global user.email 'devteam@adguard.com' 50 | git add dist/* 51 | git commit -m "Auto-update" 52 | git push 53 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Suggest an idea for Companies DB 3 | labels: ["Feature Request"] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Prerequisites 8 | description: | 9 | Please answer the following questions for yourself before submitting the feature request. 10 | options: 11 | - label: I checked the documentation and found no answer; 12 | required: true 13 | - label: I checked to make sure that this issue has not already been filed; 14 | required: true 15 | - label: This is not a report to update the database. 16 | required: true 17 | 18 | - type: textarea 19 | id: problem 20 | attributes: 21 | label: Problem description 22 | placeholder: | 23 | Is your feature request related to a problem? 24 | Please add a simple and clear description of the problem. 25 | validations: 26 | required: true 27 | 28 | - type: textarea 29 | id: solution 30 | attributes: 31 | label: Proposed solution 32 | placeholder: | 33 | Suggest a possible solution in a clear and concise manner. 34 | validations: 35 | required: true 36 | 37 | - type: textarea 38 | id: additional 39 | attributes: 40 | label: Additional information 41 | placeholder: | 42 | Add any other context about the problem here. 43 | validations: 44 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/database_correction.yml: -------------------------------------------------------------------------------- 1 | name: Database correction 2 | description: Report new or correct existing information in the database. 3 | labels: [pending triage] 4 | body: 5 | - type: textarea 6 | id: what-happened 7 | attributes: 8 | label: Describe the issue 9 | description: What would you like to change or add? 10 | placeholder: Description 11 | validations: 12 | required: true 13 | 14 | - type: input 15 | id: company_name 16 | attributes: 17 | label: What is the name of the company? 18 | description: Enter the official name of the company. 19 | placeholder: ex. Example Inc. 20 | validations: 21 | required: false 22 | 23 | - type: input 24 | id: company_site 25 | attributes: 26 | label: What is the address of the company website? 27 | description: Enter the official website of the company. 28 | placeholder: ex. https://example.com/ 29 | validations: 30 | required: false 31 | 32 | - type: input 33 | id: tracker_name 34 | attributes: 35 | label: What is the name of the tracker or service? 36 | description: Enter the official name of the tracker or service. 37 | placeholder: ex. Example Analytics. 38 | validations: 39 | required: false 40 | 41 | - type: input 42 | id: tracker_purpose 43 | attributes: 44 | label: What is the purpose of the tracker or service? 45 | description: Provide a very short description of the tracker or service. It will be used to choose the tracker category. 46 | placeholder: ex. Ads targeting. 47 | validations: 48 | required: false 49 | 50 | - type: input 51 | id: tracker_site 52 | attributes: 53 | label: What is the address of the tracker or service? 54 | description: Enter the site or URL of the tracker or service. May be the same as the company website. 55 | placeholder: ex. https://example.com/ 56 | validations: 57 | required: false 58 | 59 | - type: textarea 60 | id: tracker_domains 61 | attributes: 62 | label: List the domains that are used by the tracker or service. 63 | description: | 64 | The tracker domain may be the same as the domain of the company website 65 | value: | 66 | 1. track.example.com 67 | 2. exmpl.xyz 68 | validations: 69 | required: false 70 | 71 | - type: textarea 72 | id: comments 73 | attributes: 74 | label: Add your comment and screenshots. 75 | description: | 76 | 0. DO NOT upload screenshots with sexually explicit material on GitHub directly. Instead, upload it to third-party image hosting and post URL here; 77 | 1. Add screenshots of the problem. You can drag and drop images or paste them from clipboard; 78 | Use `
` tag to hide screenshots under the spoiler; 79 | 2. Recommended to attach screenshots from the DNS filtering log 80 | 81 | Warning: Please remove personal information before uploading screenshots! 82 | value: | 83 | 1. 84 | 85 | 2. Screenshots 86 |
Screenshot 1: 87 | 88 | 89 | 90 |
91 | validations: 92 | required: false 93 | 94 | - type: checkboxes 95 | id: terms 96 | attributes: 97 | label: Privacy 98 | description: By submitting this issue, you agree that report does not contain private info 99 | options: 100 | - label: I agree to follow this condition 101 | required: true -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Companies DB 2 | 3 | This is a companies DB that we use in AdGuard Home and AdGuard DNS. 4 | It is basically the [Whotracks.me](https://github.com/whotracksme/whotracks.me) 5 | database converted to a simple JSON format with some additions from us. 6 | 7 | In addition, there's also a file with companies metadata that we use in AdGuard VPN. 8 | 9 | - [Workflow](#workflow) 10 | - [Naming of branches and commits](#naming-of-branches-and-commits) 11 | - [Assignment of files](#assignment-of-files) 12 | - [How to add new or rewrite whotracks.me data](#how-to-add-new-or-rewrite-whotracksme-data) 13 | - [How to add a new company or overwrite whotracks.me data](#how-to-add-a-new-company-or-overwrite-whotracksme-data) 14 | - [How to add a new tracker or overwrite whotracks.me data](#how-to-add-a-new-tracker-or-overwrite-whotracksme-data) 15 | - [Tracker categories](#tracker-categories) 16 | - [How to build trackers data](#how-to-build-trackers-data) 17 | - [Company icons](#company-icons) 18 | - [Policy](#policy) 19 | - [Acknowledgements](#acknowledgements) 20 | 21 | ## Workflow 22 | 23 | - Create a fork of the repository on GitHub. 24 | - Create a branch from the actual main branch. 25 | - Add a tracker. 26 | - Create a Pull Request. 27 | 28 | ## Naming of branches and commits 29 | 30 | - the branch name format: 31 | `fix/issueNumber_domain` 32 | 33 | ```markdown 34 | fix/34_example.info 35 | ``` 36 | 37 | - the commit message format: 38 | `Fix #issueNumber domain` 39 | 40 | ```markdown 41 | Fix #34 example.info 42 | ``` 43 | 44 | ## Assignment of files 45 | 46 | The list of trackers and companies is generated from the database [whotracks.me]. 47 | 48 | **Trackers**: 49 | 50 | - [dist/whotracksme.json] — just a copy of [source/whotracksme.json]. 51 | - [dist/trackers.json] contains information about trackers, obtained by merging the [source/trackers.json]. 52 | - [source/whotracksme.json] contains information about trackers, fetched from whotracks.me. 53 | - [source/trackers.json] contains information about trackers, which overwrites or supplements [dist/whotracksme.json]. 54 | 55 | **Companies**: 56 | 57 | - [dist/companies.json] contains information about companies, 58 | obtained by merging the [source/whotracksme_companies.json] with [source/companies.json]. 59 | - [source/companies.json] contains information about companies, 60 | which overwrites or supplements information in [source/whotracksme_companies.json]. 61 | - [source/whotracksme_companies.json] contains information about companies, fetched from whotracks.me. 62 | 63 | **VPN Services**: 64 | 65 | - [source/vpn_services.json] contains a list of "Services" that can be added to exclusions in AdGuard VPN apps. 66 | This file is composed manually and not built from other sources. 67 | New services should be added in alphabetical order. 68 | - [dist/vpn_services.json] — just a copy of [source/vpn_services.json] with automatically added update time 69 | if the service has been added or modified. 70 | 71 | ## How to add new or rewrite whotracks.me data 72 | 73 | If you need to add new data or to rewrite [whotracks.me] data: 74 | 75 | - **company** — add to [source/companies.json] 76 | - **tracker** — add to [source/trackers.json] 77 | 78 | > **Warning** 79 | > 80 | > Add companies and tracker names in alphabetical order. Add tracker domains alphabetically **by value.** 81 | 82 | ### How to add a new company or overwrite whotracks.me data 83 | 84 | The data about the company is added to the [source/companies.json] file into the JSON key with the name that defines **companyId**, which is used when adding trackers: 85 | 86 | - **name** — the official name of the company, will be displayed in the filter log. 87 | - **websiteUrl** — the address of the company website, also used to define the company icon. 88 | - **description** — company description, not displayed anywhere. 89 | 90 | ```json 91 | "companyincID": { 92 | "name": "Company inc.", 93 | "websiteUrl": "https://www.company.org/", 94 | "description": "Description of Company inc." 95 | } 96 | ``` 97 | 98 | ### How to add a new tracker or overwrite whotracks.me data 99 | 100 | The data about the tracker is added to the [source/trackers.json] file into the nested JSON key inside the **trackers** section with the name that defines the **tracker name** of the company, which is used when adding trackers to the **trackerDomains** section: 101 | 102 | - **name** — tracker name of the company. 103 | - **categoryId** — tracker category. 104 | - **url** — the address of the company tracker. 105 | - **companyId** — company ID, taken from [dist/companies.json] or [source/companies.json] 106 | 107 | ```json 108 | { 109 | "trackers": { 110 | "company_tracker_name": { 111 | "name": "Company inc. Analytics", 112 | "categoryId": 6, 113 | "url": "https://analytics.company.org/", 114 | "companyId": "companyIncID" 115 | } 116 | } 117 | } 118 | ``` 119 | 120 | Add tracker domains to the **trackerDomains** section: 121 | 122 | - **key** — tracker domain. 123 | - **value** — the **tracker name** of the company (`key` from the **trackers** section). 124 | 125 | ```json 126 | { 127 | "trackerDomains": { 128 | "collect.company.org": "company_tracker_name" 129 | } 130 | } 131 | ``` 132 | 133 | > **Warning** 134 | > 135 | > If **the value does not exist** — enter **null**: 136 | 137 | ```json 138 | "url": null 139 | ``` 140 | 141 | ## Tracker categories 142 | 143 | | Id | Name | Purpose | 144 | | --- | -------------------- | ---------------------------------------------------------------------------------------------------------------------- | 145 | | 0 | audio_video_player | Enables websites to publish, distribute, and optimize video and audio content | 146 | | 1 | comments | Enables comments sections for articles and product reviews | 147 | | 2 | customer_interaction | Includes chat, email messaging, customer support, and other interaction tools | 148 | | 3 | pornvertising | Delivers advertisements that generally appear on sites with adult content | 149 | | 4 | advertising | Provides advertising or advertising-related services such as data collection, behavioral analysis or re-targeting | 150 | | 5 | essential | Includes tag managers, privacy notices, and technologies that are critical to the functionality of a website | 151 | | 6 | site_analytics | Collects and analyzes data related to site usage and performance | 152 | | 7 | social_media | Integrates features related to social media sites | 153 | | 8 | misc | This tracker does not fit in other categories | 154 | | 9 | cdn | Content delivery network that delivers resources for different site utilities and usually for many different customers | 155 | | 10 | hosting | This is a service used by the content provider or site owner | 156 | | 11 | unknown | This tracker has either not been labelled yet, or we do not have enough information to label it | 157 | | 12 | extensions | - | 158 | | 13 | email | Includes webmail and email clients | 159 | | 14 | consent | - | 160 | | 15 | telemetry | - | 161 | | 101 | mobile_analytics | Collects and analyzes data related to mobile app usage and performance | 162 | 163 | ## **How to build trackers data** 164 | 165 | ```bash 166 | yarn install 167 | yarn convert 168 | ``` 169 | 170 | The result is: 171 | 172 | - **dist/companies.json** — companies data JSON file. 173 | This file contains the companies list from whotracks.me merged with AdGuard companies from **source/companies.json**. 174 | - **dist/trackers.json** — trackers data JSON file. Combined data from two files: 175 | 176 | - **source/trackers.json** 177 | - **dist/whotracksme.json**. 178 | 179 | An additional key is added to the information from AdGuard files: 180 | **"source": "AdGuard"** 181 | 182 | - **dist/trackers.csv** — trackers data CSV file. This file is used by the ETL process of AdGuard DNS, be very careful 183 | with changing its structure. 184 | 185 | - **dist/whotracksme.json** — actual **whotracks.me** trackers data json file, compiled from **trackerdb.sql**. 186 | 187 | During the build process, a list of warnings and errors is displayed that should be fixed. 188 | 189 | ## Company icons 190 | 191 | The favicon of the company website is used as the company icon. It can be checked using our icon service: 192 | 193 | [https://icons.adguard.org/icon?domain=adguard.com](https://icons.adguard.org/icon?domain=adguard.com) 194 | 195 | ## Policy 196 | 197 | The detailed policy currently is under development. The decision to add a company is at the discretion of the maintainers, 198 | each request will review on a case-by-case basis. Factors such as the company's industry, reputation, and relevance 199 | will be taken into account during the evaluation process. 200 | 201 | Currently, we are avoiding adding personal websites/blogs or services that do not seem to have sufficient popularity. 202 | 203 | ## Acknowledgements 204 | 205 | We would like to thank the team at **whotracks.me** for their work. 206 | Initially, our database was built on top of the **whotracks.me** database, using their extensive data collection. 207 | However, we would like to emphasize that our current database is now independent 208 | and updated separately from **whotracks.me**. 209 | 210 | [dist/companies.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/dist/companies.json 211 | [dist/trackers.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/dist/trackers.json 212 | [dist/vpn_services.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/dist/vpn_services.json 213 | [dist/whotracksme.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/dist/whotracksme.json 214 | [source/companies.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/source/companies.json 215 | [source/trackers.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/source/trackers.json 216 | [source/vpn_services.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/dist/vpn_services.json 217 | [source/whotracksme.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/source/whotracksme.json 218 | [source/whotracksme_companies.json]: https://raw.githubusercontent.com/AdguardTeam/companiesdb/main/source/whotracksme_companies.json 219 | [whotracks.me]: http://whotracks.me 220 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | import * as fs from 'fs'; 2 | import * as zod from 'zod'; 3 | import { consola } from 'consola'; 4 | import { stringify } from 'csv-stringify/sync'; 5 | 6 | const WHOTRACKSME_INPUT_PATH = 'source/whotracksme.json'; 7 | const WHOTRACKSME_COMPANIES_INPUT_PATH = 'source/whotracksme_companies.json'; 8 | const COMPANIES_INPUT_PATH = 'source/companies.json'; 9 | const TRACKERS_INPUT_PATH = 'source/trackers.json'; 10 | const VPN_SERVICES_INPUT_PATH = 'source/vpn_services.json'; 11 | 12 | const WHOTRACKSME_OUTPUT_PATH = 'dist/whotracksme.json'; 13 | const COMPANIES_OUTPUT_PATH = 'dist/companies.json'; 14 | const TRACKERS_OUTPUT_PATH = 'dist/trackers.json'; 15 | const TRACKERS_CSV_OUTPUT_PATH = 'dist/trackers.csv'; 16 | const VPN_SERVICES_OUTPUT_PATH = 'dist/vpn_services.json'; 17 | 18 | /** 19 | * Schema parser for the companies JSON file. 20 | */ 21 | const companiesJSONSchema = zod.object({ 22 | timeUpdated: zod.string(), 23 | companies: zod.record( 24 | zod.object({ 25 | name: zod.string(), 26 | // FIXME: Does the string value always have to be a full URL? 27 | // FIXME: Can value be null? 28 | websiteUrl: zod.string().or(zod.null()), 29 | // FIXME: Can value be null? 30 | description: zod.string().or(zod.null()), 31 | source: zod.string().optional(), 32 | }).strict(), 33 | ), 34 | }).strict(); 35 | 36 | /** 37 | * Schema type of the companies JSON file. 38 | */ 39 | type CompaniesJSON = zod.infer; 40 | 41 | /** 42 | * Schema parser for the trackers JSON file. 43 | */ 44 | const trackersJSONSchema = zod.object({ 45 | timeUpdated: zod.string(), 46 | categories: zod.record(zod.string()), 47 | trackers: zod.record( 48 | zod.object({ 49 | name: zod.string(), 50 | categoryId: zod.number().optional(), 51 | // FIXME: Can value be null? 52 | url: zod.string().or(zod.null()), 53 | companyId: zod.string().or(zod.null()), 54 | source: zod.string().optional(), 55 | }).strict(), 56 | ), 57 | trackerDomains: zod.record(zod.string()), 58 | }).strict(); 59 | 60 | /** 61 | * Schema type of the trackers JSON file. 62 | */ 63 | type TrackersJSON = zod.infer; 64 | 65 | /** 66 | * Schema parser for the VPN service. 67 | */ 68 | const vpnServiceSchema = zod.object({ 69 | service_id: zod.string(), 70 | service_name: zod.string(), 71 | categories: zod.array(zod.string()), 72 | domains: zod.array(zod.string()), 73 | icon_domain: zod.string(), 74 | modified_time: zod.string().optional(), 75 | }).strict(); 76 | 77 | /** 78 | * Schema type of the VPN service. 79 | */ 80 | type VpnService = zod.infer; 81 | 82 | /** 83 | * Schema parser for the VPN services JSON file. 84 | */ 85 | const vpnServicesJSONSchema = vpnServiceSchema.array(); 86 | 87 | /** 88 | * Schema type of the VPN services JSON file. 89 | */ 90 | type VpnServicesJSON = zod.infer; 91 | 92 | /** 93 | * Reads and parse JSON file from source. 94 | * 95 | * @param source Source file path. 96 | * @returns JSON data. 97 | * @throws an error if the JSON file is invalid or does not exist. 98 | */ 99 | function readJSON(source: string): unknown { 100 | consola.info(`Reading ${source} file`); 101 | return JSON.parse(fs.readFileSync(source, 'utf8')); 102 | } 103 | 104 | /** 105 | * Writes JSON file to destination. 106 | * 107 | * @param destination Destination file path. 108 | * @param data JSON data to write. 109 | * 110 | * @throws an error if the JSON file is invalid or destination does not exist. 111 | */ 112 | function writeJSON(destination: string, data: T): void { 113 | consola.info(`Writing ${destination} file`); 114 | fs.writeFileSync(destination, `${JSON.stringify(data, null, '\t')}\n`); 115 | } 116 | 117 | /** 118 | * Reads and parse the companies JSON. 119 | * 120 | * @param source Source JSON path. 121 | * @returns parsed companies JSON data. 122 | */ 123 | function readCompaniesJSON(source: string): CompaniesJSON { 124 | const data = readJSON(source); 125 | 126 | return companiesJSONSchema.parse(data); 127 | } 128 | 129 | /** 130 | * Reads and parse the trackers JSON. 131 | * 132 | * @param source Source JSON path. 133 | * @returns parsed trackers JSON data. 134 | */ 135 | function readTrackersJSON(source: string): TrackersJSON { 136 | const data = readJSON(source); 137 | 138 | return trackersJSONSchema.parse(data); 139 | } 140 | 141 | /** 142 | * Reads and parse the vpn services JSON. 143 | * 144 | * @param source Source JSON path. 145 | * @returns parsed services JSON data. 146 | */ 147 | function readVpnServicesJSON(source: string): VpnServicesJSON { 148 | const data = readJSON(source); 149 | 150 | return vpnServicesJSONSchema.parse(data); 151 | } 152 | 153 | /** 154 | * Sorts the records alphabetically by key or value. 155 | * 156 | * @param record The record to sort. 157 | * @param sortByKey Flag specifying whether to sort by key or value. Defaults sort by key (true). 158 | * @returns New sorted record. 159 | */ 160 | function sortRecordsAlphabetically( 161 | record: Record, 162 | sortByKey = true, 163 | ): Record { 164 | return Object.fromEntries(Object.entries(record).sort(([aKey, aValue], [bKey, bValue]) => { 165 | const a = sortByKey ? aKey : aValue; 166 | const b = sortByKey ? bKey : bValue; 167 | 168 | if (a < b) { 169 | return -1; 170 | } 171 | 172 | if (a > b) { 173 | return 1; 174 | } 175 | 176 | return 0; 177 | })); 178 | } 179 | 180 | type Companies = CompaniesJSON['companies']; 181 | 182 | /** 183 | * Creates new companies data by merging whotracksme companies data with AdGuard companies data. 184 | * Adguard data marked as source: 'AdGuard'. 185 | * 186 | * @param whotrackmeCompanies Whotracksme companies data. 187 | * @param adguardCompanies AdGuard companies data. 188 | * @returns merged companies data. 189 | */ 190 | function buildCompanies( 191 | whotrackmeCompanies: Companies, 192 | adguardCompanies: Companies, 193 | ): Companies { 194 | // clone the whotracksme companies data 195 | const merged = { ...whotrackmeCompanies }; 196 | 197 | Object.entries(adguardCompanies).forEach(([id, company]) => { 198 | // Overriding whotracksme info with the companies defined in the source 199 | // companies file. 200 | // Also, indicate, that the company came from AdGuard data. 201 | merged[id] = company; 202 | merged[id].source = 'AdGuard'; 203 | }); 204 | 205 | return sortRecordsAlphabetically(merged); 206 | } 207 | 208 | type TrackersCategories = TrackersJSON['categories']; 209 | 210 | /** 211 | * Creates new categories data by merging whotracksme companies data with AdGuard companies data. 212 | * 213 | * @param whotracksmeTrackersCategories 214 | * @param adguardTrackersCategories 215 | * @returns merged categories data. 216 | */ 217 | function buildTrackersCategories( 218 | whotracksmeTrackersCategories: TrackersCategories, 219 | adguardTrackersCategories: TrackersCategories, 220 | ): TrackersCategories { 221 | return sortRecordsAlphabetically({ 222 | ...whotracksmeTrackersCategories, 223 | ...adguardTrackersCategories, 224 | }); 225 | } 226 | 227 | type Trackers = TrackersJSON['trackers']; 228 | 229 | /** 230 | * Creates new trackers data by merging whotracksme trackers data with AdGuard trackers data. 231 | * Also validates the company reference for each tracker. 232 | * 233 | * @param whotracksmeTrackers Whotracksme trackers data. 234 | * @param adguardTrackers AdGuard trackers data. 235 | * @param companies Merged companies data. 236 | * @returns merged trackers data. 237 | * @throws an error if at least one company reference is invalid. 238 | */ 239 | function buildTrackers( 240 | whotracksmeTrackers: Trackers, 241 | adguardTrackers: Trackers, 242 | companies: Companies, 243 | ): Trackers { 244 | const merged = { ...whotracksmeTrackers }; 245 | 246 | Object.entries(adguardTrackers).forEach(([id, tracker]) => { 247 | // Overriding whotracksme info with the companies defined in the source 248 | // companies file. 249 | // Also, indicate, that the company came from AdGuard data. 250 | merged[id] = tracker; 251 | merged[id].source = 'AdGuard'; 252 | }); 253 | 254 | // Validate the company reference and exit immediately if it's wrong. 255 | Object.entries(merged).forEach(([id, tracker]) => { 256 | if (tracker.companyId === null) { 257 | consola.warn(`Tracker ${id} has no company ID, consider adding it`); 258 | } else if (!companies[tracker.companyId]) { 259 | throw new Error(`Tracker ${id} has an invalid company ID: ${tracker.companyId}`); 260 | } 261 | }); 262 | 263 | return sortRecordsAlphabetically(merged); 264 | } 265 | 266 | type TrackersDomains = TrackersJSON['trackerDomains']; 267 | 268 | /** 269 | * Creates new tracker domains data by merging whotracksme trackers 270 | * domains data with AdGuard trackers domains data. 271 | * Also validates the tracker reference for each tracker domain. 272 | * 273 | * @param whotracksmeTrackersDomains Whotracksme trackers domains data. 274 | * @param adguardTrackersDomains AdGuard trackers domains data. 275 | * @param trackers Merged trackers data. 276 | * @returns merged tracker domains data. 277 | * @throws an error if at least one tracker reference is invalid. 278 | */ 279 | function buildTrackersDomains( 280 | whotracksmeTrackersDomains: TrackersDomains, 281 | adguardTrackersDomains: TrackersDomains, 282 | trackers: Trackers, 283 | ): TrackersDomains { 284 | const merged = { ...whotracksmeTrackersDomains, ...adguardTrackersDomains }; 285 | 286 | // Validate the tracker domains and exit immediately if it's wrong. 287 | Object.entries(merged).forEach(([domain, trackerId]) => { 288 | // Make sure that the tracker ID is valid. 289 | if (!trackers[trackerId]) { 290 | throw new Error(`Tracker domain ${domain} has an invalid tracker ID: ${trackerId}`); 291 | } 292 | }); 293 | 294 | return sortRecordsAlphabetically(merged, false); 295 | } 296 | /** 297 | * Formats the current date and time in the format 'YYYY-MM-DD HH:MM'. 298 | * @returns The current date and time in the format 'YYYY-MM-DD HH:MM'. 299 | */ 300 | function getCurrentDateTime(): string { 301 | const now = new Date(); 302 | 303 | const day = String(now.getDate()).padStart(2, '0'); 304 | const month = String(now.getMonth() + 1).padStart(2, '0'); 305 | const year = now.getFullYear(); 306 | const hours = String(now.getHours()).padStart(2, '0'); 307 | const minutes = String(now.getMinutes()).padStart(2, '0'); 308 | 309 | return `${year}-${month}-${day} ${hours}:${minutes}`; 310 | } 311 | 312 | /** 313 | * Updates the modified_time field in the vpn services JSON file. 314 | * If a service is not present in the upToDateMap, it will be added with the current date. 315 | * If service was changed, the modified_time field will be updated to the current date. 316 | * @param vpnInput The updated vpn services JSON file. 317 | * @param vpnOutput The previously recorded vpn services JSON file. 318 | * @returns The updated vpn services JSON file with the modified_time field updated, if necessary. 319 | */ 320 | 321 | function updateVpnServicesJSONDate( 322 | vpnInput: VpnServicesJSON, 323 | vpnOutput: VpnServicesJSON, 324 | ): VpnServicesJSON { 325 | const timeUpdated = getCurrentDateTime(); 326 | 327 | // Create maps of services based on their id 328 | const upToDateMap: { [key: string]: VpnService } = vpnOutput.reduce((map, obj) => ({ 329 | ...map, 330 | [obj.service_id]: obj, 331 | }), {}); 332 | 333 | const updatedMap: { [key: string]: VpnService } = vpnInput.reduce((map, obj) => ({ 334 | ...map, 335 | [obj.service_id]: obj, 336 | }), {}); 337 | 338 | // Iterate over keys in updatedMap 339 | Object.keys(updatedMap).forEach((key) => { 340 | // Check if the key exists in upToDateMap 341 | if (!upToDateMap[key]) { 342 | upToDateMap[key] = { 343 | ...updatedMap[key], 344 | modified_time: timeUpdated, 345 | }; 346 | } else { 347 | let shouldUpdateDate = false; 348 | // Check values 349 | Object.keys(updatedMap[key]).forEach((k) => { 350 | // if the value is a string, compare the strings 351 | if (typeof updatedMap[key][k as keyof VpnService] === 'string') { 352 | if ( 353 | updatedMap[key][k as keyof VpnService] 354 | !== upToDateMap[key][k as keyof VpnService]) { 355 | shouldUpdateDate = true; 356 | } 357 | } else if (Array.isArray(updatedMap[key][k as keyof VpnService])) { 358 | // if the value is an array, compare the arrays 359 | const updatedArray = updatedMap[key][k as keyof VpnService] as any[]; 360 | const upToDateArray = upToDateMap[key][k as keyof VpnService] as any[]; 361 | if (!updatedArray.every((element, index) => element === upToDateArray[index])) { 362 | shouldUpdateDate = true; 363 | } 364 | } 365 | }); 366 | if (shouldUpdateDate) { 367 | upToDateMap[key] = { 368 | ...updatedMap[key], 369 | modified_time: timeUpdated, 370 | }; 371 | } 372 | } 373 | }); 374 | 375 | return Object.values(sortRecordsAlphabetically(upToDateMap)); 376 | } 377 | 378 | /** 379 | * Builds the trackers CSV file in the following form: 380 | * domain;tracker_id;category_id 381 | * 382 | * This CSV file is used in the ETL process of AdGuard DNS (for data enrichment), 383 | * any changes to its format should be reflected in the ETL code as well. 384 | * 385 | * @param trackers Merge trackers data. 386 | * @param trackersDomains Merged tracker domains data. 387 | * @returns CSV file content. 388 | * @throws an error if at least one tracker reference is invalid. 389 | */ 390 | function buildTrackersCSV( 391 | trackers: Trackers, 392 | trackersDomains: TrackersDomains, 393 | ): string { 394 | // Init with the header. 395 | let csv = 'domain;tracker_id;category_id\n'; 396 | 397 | Object.entries(trackersDomains).forEach(([domain, trackerId]) => { 398 | const tracker = trackers[trackerId]; 399 | if (!tracker) { 400 | throw new Error(`Tracker domain ${domain} has an invalid tracker ID: ${trackerId}`); 401 | } 402 | const { categoryId } = tracker; 403 | if (typeof categoryId !== 'undefined') { 404 | const csvRow = stringify([[domain, trackerId, categoryId]], { 405 | delimiter: ';', 406 | quoted_match: ',', 407 | }); 408 | csv += csvRow; 409 | } else { 410 | consola.warn(`Tracker ${trackerId} has no category ID, consider adding it`); 411 | } 412 | }); 413 | 414 | return csv; 415 | } 416 | 417 | try { 418 | consola.info('Start building the companies DB'); 419 | 420 | const timeUpdated = new Date().toISOString(); 421 | 422 | const whotrackmeTrackersJSON = readTrackersJSON(WHOTRACKSME_INPUT_PATH); 423 | const adguardTrackersJSON = readTrackersJSON(TRACKERS_INPUT_PATH); 424 | const whotrackmeCompaniesJSON = readCompaniesJSON(WHOTRACKSME_COMPANIES_INPUT_PATH); 425 | const adguardCompaniesJSON = readCompaniesJSON(COMPANIES_INPUT_PATH); 426 | 427 | writeJSON(WHOTRACKSME_OUTPUT_PATH, { 428 | ...whotrackmeTrackersJSON, 429 | timeUpdated, 430 | }); 431 | 432 | consola.info(`Building ${COMPANIES_OUTPUT_PATH} file`); 433 | 434 | const companies = buildCompanies( 435 | whotrackmeCompaniesJSON.companies, 436 | adguardCompaniesJSON.companies, 437 | ); 438 | 439 | writeJSON(COMPANIES_OUTPUT_PATH, { 440 | timeUpdated, 441 | companies, 442 | }); 443 | 444 | consola.info(`Building ${TRACKERS_OUTPUT_PATH} file`); 445 | 446 | const categories = buildTrackersCategories( 447 | whotrackmeTrackersJSON.categories, 448 | adguardTrackersJSON.categories, 449 | ); 450 | 451 | const trackers = buildTrackers( 452 | whotrackmeTrackersJSON.trackers, 453 | adguardTrackersJSON.trackers, 454 | companies, 455 | ); 456 | 457 | const trackerDomains = buildTrackersDomains( 458 | whotrackmeTrackersJSON.trackerDomains, 459 | adguardTrackersJSON.trackerDomains, 460 | trackers, 461 | ); 462 | 463 | writeJSON(TRACKERS_OUTPUT_PATH, { 464 | timeUpdated, 465 | categories, 466 | trackers, 467 | trackerDomains, 468 | }); 469 | 470 | consola.info(`Building ${TRACKERS_CSV_OUTPUT_PATH} file`); 471 | 472 | const csv = buildTrackersCSV(trackers, trackerDomains); 473 | 474 | fs.writeFileSync(TRACKERS_CSV_OUTPUT_PATH, csv); 475 | 476 | // previously recorded VPN services JSON 477 | const upToDateVpnServicesJSON = readVpnServicesJSON(VPN_SERVICES_OUTPUT_PATH); 478 | // VPN services JSON with new records/updates 479 | const vpnServicesJSON = readVpnServicesJSON(VPN_SERVICES_INPUT_PATH); 480 | // modified VPN services JSON with updated modified_time field 481 | // if service was updated or added 482 | const updatedVpnServicesJSON = updateVpnServicesJSONDate( 483 | vpnServicesJSON, 484 | upToDateVpnServicesJSON, 485 | ); 486 | 487 | writeJSON(VPN_SERVICES_OUTPUT_PATH, updatedVpnServicesJSON); 488 | 489 | consola.info('Finished building the companies DB'); 490 | } catch (ex) { 491 | consola.error(`Error while building the companies DB: ${ex}`); 492 | process.exit(1); 493 | } 494 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | including for purposes of Section 3(b); and 307 | 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public licenses. 411 | Notwithstanding, Creative Commons may elect to apply one of its public 412 | licenses to material it publishes and in those instances will be 413 | considered the “Licensor.” The text of the Creative Commons public 414 | licenses is dedicated to the public domain under the CC0 Public Domain 415 | Dedication. Except for the limited purpose of indicating that material 416 | is shared under a Creative Commons public license or as otherwise 417 | permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the public 425 | licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /dist/vpn_services.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "service_id": "adobe_creative_cloud", 4 | "service_name": "Adobe Creative Cloud", 5 | "categories": [ 6 | "WORK" 7 | ], 8 | "domains": [ 9 | "adobe.com", 10 | "adobe.io", 11 | "adobecc.com", 12 | "adobecces.com", 13 | "adobeccstatic.com", 14 | "adobedtm.com", 15 | "adobeexchange.com", 16 | "adobegenuine.com", 17 | "adobegov.com", 18 | "adobe-identity.com", 19 | "adobejanus.com", 20 | "adobelogin.com", 21 | "adobeoobe.com", 22 | "adobeprojectm.com", 23 | "adobesc.com", 24 | "adobe-services.com", 25 | "adobess.com", 26 | "adobesunbreak.com", 27 | "adobetag.com", 28 | "behance.net", 29 | "ftcdn.net", 30 | "typekit.com", 31 | "typekit.net", 32 | "slp-statics.astockcdn.net" 33 | ], 34 | "icon_domain": "adobe.com", 35 | "modified_time": "2024-11-12 09:46" 36 | }, 37 | { 38 | "service_id": "aliexpress", 39 | "service_name": "Aliexpress", 40 | "categories": [ 41 | "SHOP" 42 | ], 43 | "domains": [ 44 | "aliexpress.com", 45 | "aliexpress.ru" 46 | ], 47 | "icon_domain": "aliexpress.com", 48 | "modified_time": "2021-09-14 10:23" 49 | }, 50 | { 51 | "service_id": "amazon", 52 | "service_name": "Amazon", 53 | "categories": [ 54 | "SHOP" 55 | ], 56 | "domains": [ 57 | "a2z.com", 58 | "amazon-corp.com", 59 | "amazon.ca", 60 | "amazon.co.jp", 61 | "amazon.co.uk", 62 | "amazon.com", 63 | "amazon.com.au", 64 | "amazon.com.mx", 65 | "amazon.de", 66 | "amazon.es", 67 | "amazon.eu", 68 | "amazon.fr", 69 | "amazon.in", 70 | "amazon.it", 71 | "amazon.nl", 72 | "amazon.sa", 73 | "amazonbrowserapp.co.uk", 74 | "amazonbrowserapp.es", 75 | "amazoncognito.com", 76 | "amazoncrl.com", 77 | "amazonpay.com", 78 | "amazonpay.in", 79 | "amazontrust.com", 80 | "associates-amazon.com", 81 | "images-amazon.com", 82 | "media-amazon.com", 83 | "ssl-images-amazon.com" 84 | ], 85 | "icon_domain": "amazon.com", 86 | "modified_time": "2021-09-14 10:23" 87 | }, 88 | { 89 | "service_id": "atlassian", 90 | "service_name": "Atlassian", 91 | "categories": [ 92 | "WORK" 93 | ], 94 | "domains": [ 95 | "atlassian.com", 96 | "atlassian.net", 97 | "bitbucket.org" 98 | ], 99 | "icon_domain": "atlassian.com", 100 | "modified_time": "2021-09-14 10:23" 101 | }, 102 | { 103 | "service_id": "baidu", 104 | "service_name": "Baidu", 105 | "categories": [ 106 | "SEARCH" 107 | ], 108 | "domains": [ 109 | "baidu.com", 110 | "baiducontent.com", 111 | "baidupcs.com", 112 | "baidustatic.com", 113 | "bcebos.com", 114 | "bdimg.com", 115 | "bdstatic.com", 116 | "gshifen.com", 117 | "popin.cc", 118 | "shifen.com", 119 | "wshifen.com" 120 | ], 121 | "icon_domain": "baidu.com", 122 | "modified_time": "2021-09-14 10:23" 123 | }, 124 | { 125 | "service_id": "bing", 126 | "service_name": "Bing", 127 | "categories": [ 128 | "SEARCH" 129 | ], 130 | "domains": [ 131 | "bi.ng", 132 | "bing.com", 133 | "bing.com.bo", 134 | "bing.com.co", 135 | "bing.com.cy", 136 | "bing.com.gt", 137 | "bing.jp", 138 | "bing.net", 139 | "bingapis.com", 140 | "bingforbusiness.com" 141 | ], 142 | "icon_domain": "bing.com", 143 | "modified_time": "2021-09-14 10:23" 144 | }, 145 | { 146 | "service_id": "craigslist", 147 | "service_name": "Craigslist", 148 | "categories": [ 149 | "SHOP" 150 | ], 151 | "domains": [ 152 | "craigslist.ca", 153 | "craigslist.org" 154 | ], 155 | "icon_domain": "craigslist.com", 156 | "modified_time": "2021-09-14 10:23" 157 | }, 158 | { 159 | "service_id": "deezer", 160 | "service_name": "Deezer", 161 | "categories": [ 162 | "MUSIC" 163 | ], 164 | "domains": [ 165 | "deezer.com", 166 | "dzcdn.net" 167 | ], 168 | "icon_domain": "deezer.com", 169 | "modified_time": "2021-09-14 10:23" 170 | }, 171 | { 172 | "service_id": "discord", 173 | "service_name": "Discord", 174 | "categories": [ 175 | "MESSENGERS" 176 | ], 177 | "domains": [ 178 | "discord.com", 179 | "discord.gg", 180 | "discord.media", 181 | "discordapp.com", 182 | "discordapp.net", 183 | "discordstatus.com" 184 | ], 185 | "icon_domain": "discord.com", 186 | "modified_time": "2021-09-14 10:23" 187 | }, 188 | { 189 | "service_id": "disneyplus", 190 | "service_name": "Disney Plus", 191 | "categories": [ 192 | "VIDEO" 193 | ], 194 | "domains": [ 195 | "disney-plus.net", 196 | "disneyplus.com", 197 | "dssott.com", 198 | "bamgrid.com" 199 | ], 200 | "icon_domain": "disneyplus.com", 201 | "modified_time": "2021-09-14 10:23" 202 | }, 203 | { 204 | "service_id": "duckduckgo", 205 | "service_name": "DuckDuckGo", 206 | "categories": [ 207 | "SEARCH" 208 | ], 209 | "domains": [ 210 | "duckduckgo.com" 211 | ], 212 | "icon_domain": "duckduckgo.com", 213 | "modified_time": "2021-09-14 10:23" 214 | }, 215 | { 216 | "service_id": "ebay", 217 | "service_name": "Ebay", 218 | "categories": [ 219 | "SHOP" 220 | ], 221 | "domains": [ 222 | "ebay-us.com", 223 | "ebay.be", 224 | "ebay.ca", 225 | "ebay.co.jp", 226 | "ebay.co.uk", 227 | "ebay.com", 228 | "ebay.com.au", 229 | "ebay.com.my", 230 | "ebay.fr", 231 | "ebayadservices.com", 232 | "ebaycdn.net", 233 | "ebaydesc.com", 234 | "ebayimg.com", 235 | "ebayrtm.com", 236 | "ebaystatic.com", 237 | "ebaystratus.com" 238 | ], 239 | "icon_domain": "ebay.com", 240 | "modified_time": "2021-09-14 10:23" 241 | }, 242 | { 243 | "service_id": "epicgames", 244 | "service_name": "Epic Games", 245 | "categories": [ 246 | "GAMES" 247 | ], 248 | "domains": [ 249 | "epicgames.com", 250 | "epicgames.dev", 251 | "epicgames.net", 252 | "unrealengine.com" 253 | ], 254 | "icon_domain": "epicgames.com", 255 | "modified_time": "2021-09-14 10:23" 256 | }, 257 | { 258 | "service_id": "etsy", 259 | "service_name": "Etsy", 260 | "categories": [ 261 | "SHOP" 262 | ], 263 | "domains": [ 264 | "etsy.com", 265 | "etsy.me", 266 | "etsystatic.com" 267 | ], 268 | "icon_domain": "etsy.com", 269 | "modified_time": "2021-09-14 10:23" 270 | }, 271 | { 272 | "service_id": "facebook", 273 | "service_name": "Facebook", 274 | "categories": [ 275 | "SOCIAL_NETWORKS" 276 | ], 277 | "domains": [ 278 | "accountkit.com", 279 | "atdmt.com", 280 | "atlassolutions.com", 281 | "facebook.com", 282 | "facebook.net", 283 | "facebookmail.com", 284 | "fb.com", 285 | "fb.gg", 286 | "fb.watch", 287 | "fbcdn.net", 288 | "fbsbx.com", 289 | "fbwat.ch", 290 | "parse.com" 291 | ], 292 | "icon_domain": "facebook.com", 293 | "modified_time": "2021-09-14 10:23" 294 | }, 295 | { 296 | "service_id": "flickr", 297 | "service_name": "Flickr", 298 | "categories": [ 299 | "SOCIAL_NETWORKS" 300 | ], 301 | "domains": [ 302 | "flickr.com", 303 | "flickrprints.com", 304 | "staticflickr.com" 305 | ], 306 | "icon_domain": "flickr.com", 307 | "modified_time": "2021-09-14 10:23" 308 | }, 309 | { 310 | "service_id": "github", 311 | "service_name": "GitHub", 312 | "categories": [ 313 | "WORK" 314 | ], 315 | "domains": [ 316 | "ghcr.io", 317 | "github.com", 318 | "github.dev", 319 | "github.io", 320 | "githubapp.com", 321 | "githubassets.com", 322 | "githubcopilot.com", 323 | "githubusercontent.com" 324 | ], 325 | "icon_domain": "github.com", 326 | "modified_time": "2024-11-15 16:31" 327 | }, 328 | { 329 | "service_id": "gitlab", 330 | "service_name": "GitLab", 331 | "categories": [ 332 | "WORK" 333 | ], 334 | "domains": [ 335 | "gitlab-static.net", 336 | "gitlab.com", 337 | "gitlab.io", 338 | "gitlab.net" 339 | ], 340 | "icon_domain": "gitlab.com", 341 | "modified_time": "2021-09-14 10:23" 342 | }, 343 | { 344 | "service_id": "gog", 345 | "service_name": "GOG", 346 | "categories": [ 347 | "GAMES" 348 | ], 349 | "domains": [ 350 | "gog-statics.com", 351 | "gog.com", 352 | "gogalaxy.com", 353 | "gogcdn.net" 354 | ], 355 | "icon_domain": "gog.com", 356 | "modified_time": "2021-09-14 10:23" 357 | }, 358 | { 359 | "service_id": "google", 360 | "service_name": "Google", 361 | "categories": [ 362 | "SEARCH" 363 | ], 364 | "domains": [ 365 | "1e100.net", 366 | "g.co", 367 | "goo.gl", 368 | "google.ad", 369 | "google.ae", 370 | "google.al", 371 | "google.am", 372 | "google.as", 373 | "google.at", 374 | "google.az", 375 | "google.ba", 376 | "google.be", 377 | "google.bf", 378 | "google.bg", 379 | "google.bi", 380 | "google.bj", 381 | "google.bs", 382 | "google.bt", 383 | "google.by", 384 | "google.ca", 385 | "google.cat", 386 | "google.cd", 387 | "google.cf", 388 | "google.cg", 389 | "google.ch", 390 | "google.ci", 391 | "google.cl", 392 | "google.cm", 393 | "google.cn", 394 | "google.co.ao", 395 | "google.co.bw", 396 | "google.co.ck", 397 | "google.co.cr", 398 | "google.co.id", 399 | "google.co.il", 400 | "google.co.in", 401 | "google.co.jp", 402 | "google.co.ke", 403 | "google.co.kr", 404 | "google.co.ls", 405 | "google.co.ma", 406 | "google.co.mz", 407 | "google.co.nz", 408 | "google.co.th", 409 | "google.co.tz", 410 | "google.co.ug", 411 | "google.co.uk", 412 | "google.co.uz", 413 | "google.co.ve", 414 | "google.co.vi", 415 | "google.co.za", 416 | "google.co.zm", 417 | "google.co.zw", 418 | "google.com", 419 | "google.com.af", 420 | "google.com.ag", 421 | "google.com.ai", 422 | "google.com.ar", 423 | "google.com.au", 424 | "google.com.bd", 425 | "google.com.bh", 426 | "google.com.bn", 427 | "google.com.bo", 428 | "google.com.br", 429 | "google.com.bz", 430 | "google.com.co", 431 | "google.com.cu", 432 | "google.com.cy", 433 | "google.com.do", 434 | "google.com.ec", 435 | "google.com.eg", 436 | "google.com.et", 437 | "google.com.fj", 438 | "google.com.gh", 439 | "google.com.gi", 440 | "google.com.gt", 441 | "google.com.hk", 442 | "google.com.jm", 443 | "google.com.kh", 444 | "google.com.kw", 445 | "google.com.lb", 446 | "google.com.ly", 447 | "google.com.mm", 448 | "google.com.mt", 449 | "google.com.mx", 450 | "google.com.my", 451 | "google.com.na", 452 | "google.com.ng", 453 | "google.com.ni", 454 | "google.com.np", 455 | "google.com.om", 456 | "google.com.pa", 457 | "google.com.pe", 458 | "google.com.pg", 459 | "google.com.ph", 460 | "google.com.pk", 461 | "google.com.pr", 462 | "google.com.py", 463 | "google.com.qa", 464 | "google.com.sa", 465 | "google.com.sb", 466 | "google.com.sg", 467 | "google.com.sl", 468 | "google.com.sv", 469 | "google.com.tj", 470 | "google.com.tr", 471 | "google.com.tw", 472 | "google.com.ua", 473 | "google.com.uy", 474 | "google.com.vc", 475 | "google.com.vn", 476 | "google.cv", 477 | "google.cz", 478 | "google.de", 479 | "google.dj", 480 | "google.dk", 481 | "google.dm", 482 | "google.dz", 483 | "google.ee", 484 | "google.es", 485 | "google.fi", 486 | "google.fm", 487 | "google.fr", 488 | "google.ga", 489 | "google.ge", 490 | "google.gg", 491 | "google.gl", 492 | "google.gm", 493 | "google.gr", 494 | "google.gy", 495 | "google.hn", 496 | "google.hr", 497 | "google.ht", 498 | "google.hu", 499 | "google.ie", 500 | "google.im", 501 | "google.in", 502 | "google.iq", 503 | "google.is", 504 | "google.it", 505 | "google.je", 506 | "google.jo", 507 | "google.kg", 508 | "google.ki", 509 | "google.kz", 510 | "google.la", 511 | "google.li", 512 | "google.lk", 513 | "google.lt", 514 | "google.lu", 515 | "google.lv", 516 | "google.md", 517 | "google.me", 518 | "google.mg", 519 | "google.mk", 520 | "google.ml", 521 | "google.mn", 522 | "google.ms", 523 | "google.mu", 524 | "google.mv", 525 | "google.mw", 526 | "google.ne", 527 | "google.net", 528 | "google.nl", 529 | "google.no", 530 | "google.nr", 531 | "google.nu", 532 | "google.org", 533 | "google.pl", 534 | "google.pn", 535 | "google.ps", 536 | "google.pt", 537 | "google.ro", 538 | "google.rs", 539 | "google.ru", 540 | "google.rw", 541 | "google.sc", 542 | "google.se", 543 | "google.sh", 544 | "google.si", 545 | "google.sk", 546 | "google.sm", 547 | "google.sn", 548 | "google.so", 549 | "google.sr", 550 | "google.st", 551 | "google.td", 552 | "google.tg", 553 | "google.tk", 554 | "google.tl", 555 | "google.tm", 556 | "google.tn", 557 | "google.to", 558 | "google.tt", 559 | "google.vg", 560 | "google.vu", 561 | "google.ws", 562 | "googleapis.com", 563 | "googlecode.com", 564 | "googlehosted.com", 565 | "googleoptimize.com", 566 | "googleusercontent.com", 567 | "googleweblight.in", 568 | "googlezip.net", 569 | "gstatic.com", 570 | "gvt2.com", 571 | "gvt3.com", 572 | "withgoogle.com" 573 | ], 574 | "icon_domain": "google.com", 575 | "modified_time": "2021-09-14 10:23" 576 | }, 577 | { 578 | "service_id": "hbo", 579 | "service_name": "HBO", 580 | "categories": [ 581 | "VIDEO" 582 | ], 583 | "domains": [ 584 | "hbo.com", 585 | "hbogo.co.th", 586 | "hbogo.com", 587 | "hbogo.eu", 588 | "hbogoasia.com", 589 | "hbogoasia.id", 590 | "hbogoasia.ph", 591 | "hbomax.com", 592 | "hbomaxcdn.com" 593 | ], 594 | "icon_domain": "hbo.com", 595 | "modified_time": "2021-09-14 10:23" 596 | }, 597 | { 598 | "service_id": "hulu", 599 | "service_name": "Hulu", 600 | "categories": [ 601 | "VIDEO" 602 | ], 603 | "domains": [ 604 | "hulu.com", 605 | "huluad.com", 606 | "huluim.com", 607 | "hulumail.com", 608 | "huluqa.com", 609 | "hulustream.com" 610 | ], 611 | "icon_domain": "hulu.com", 612 | "modified_time": "2021-09-14 10:23" 613 | }, 614 | { 615 | "service_id": "instagram", 616 | "service_name": "Instagram", 617 | "categories": [ 618 | "SOCIAL_NETWORKS" 619 | ], 620 | "domains": [ 621 | "cdninstagram.com", 622 | "instagram.com", 623 | "ig.me" 624 | ], 625 | "icon_domain": "instagram.com", 626 | "modified_time": "2021-09-14 10:23" 627 | }, 628 | { 629 | "service_id": "jetbrains", 630 | "service_name": "JetBrains", 631 | "categories": [ 632 | "WORK" 633 | ], 634 | "domains": [ 635 | "grazie.ai", 636 | "intellij.net", 637 | "jb.gg", 638 | "jetbrains.ai", 639 | "jetbrains.com", 640 | "jetbrains.com.cn", 641 | "jetbrains.dev", 642 | "jetbrains.net", 643 | "jetbrains.org", 644 | "jetbrains.ru", 645 | "jetbrains.space", 646 | "kotl.in", 647 | "kotlinconf.com", 648 | "kotlinlang.org", 649 | "myjetbrains.com", 650 | "talkingkotlin.com" 651 | ], 652 | "icon_domain": "jetbrains.com", 653 | "modified_time": "2025-07-04 16:47" 654 | }, 655 | { 656 | "service_id": "kakao", 657 | "service_name": "Kakao Talk", 658 | "categories": [ 659 | "MESSENGERS" 660 | ], 661 | "domains": [ 662 | "daum.net", 663 | "kakao.com" 664 | ], 665 | "icon_domain": "kakao.com", 666 | "modified_time": "2021-09-14 10:23" 667 | }, 668 | { 669 | "service_id": "kik", 670 | "service_name": "Kik", 671 | "categories": [ 672 | "MESSENGERS" 673 | ], 674 | "domains": [ 675 | "kik.com" 676 | ], 677 | "icon_domain": "kik.com", 678 | "modified_time": "2021-09-14 10:23" 679 | }, 680 | { 681 | "service_id": "last", 682 | "service_name": "Last.fm", 683 | "categories": [ 684 | "MUSIC" 685 | ], 686 | "domains": [ 687 | "last.fm" 688 | ], 689 | "icon_domain": "last.fm", 690 | "modified_time": "2021-09-14 10:23" 691 | }, 692 | { 693 | "service_id": "linkedin", 694 | "service_name": "LinkedIn", 695 | "categories": [ 696 | "SOCIAL_NETWORKS" 697 | ], 698 | "domains": [ 699 | "bizographics.com", 700 | "licdn.com", 701 | "linkedin.at", 702 | "linkedin.com" 703 | ], 704 | "icon_domain": "linkedin.com", 705 | "modified_time": "2021-09-14 10:23" 706 | }, 707 | { 708 | "service_id": "messenger", 709 | "service_name": "Facebook Messenger", 710 | "categories": [ 711 | "MESSENGERS" 712 | ], 713 | "domains": [ 714 | "m.me", 715 | "messenger.com", 716 | "msngr.com" 717 | ], 718 | "icon_domain": "messenger.com", 719 | "modified_time": "2021-09-14 10:23" 720 | }, 721 | { 722 | "service_id": "netflix", 723 | "service_name": "Netflix", 724 | "categories": [ 725 | "VIDEO" 726 | ], 727 | "domains": [ 728 | "netflix.com", 729 | "netflix.net", 730 | "nflxext.com", 731 | "nflximg.com", 732 | "nflximg.net", 733 | "nflxso.net", 734 | "nflxvideo.net" 735 | ], 736 | "icon_domain": "netflix.com", 737 | "modified_time": "2021-09-14 10:23" 738 | }, 739 | { 740 | "service_id": "office", 741 | "service_name": "Microsoft Office", 742 | "categories": [ 743 | "WORK" 744 | ], 745 | "domains": [ 746 | "assets-yammer.com", 747 | "footprintdns.com", 748 | "microsoftonline-p.com", 749 | "microsoftonline.com", 750 | "msocdn.com", 751 | "msocsp.com", 752 | "o365filtering.com", 753 | "office.com", 754 | "office.de", 755 | "office.microsoft", 756 | "office.net", 757 | "office365.com", 758 | "office365.us", 759 | "live.com", 760 | "microsoft.com", 761 | "onmicrosoft.com", 762 | "svc.ms", 763 | "yammer.com" 764 | ], 765 | "icon_domain": "office.com", 766 | "modified_time": "2021-09-14 10:23" 767 | }, 768 | { 769 | "service_id": "openai", 770 | "service_name": "OpenAI", 771 | "categories": [ 772 | "SEARCH" 773 | ], 774 | "domains": [ 775 | "chatgpt.com", 776 | "oaistatic.com", 777 | "oaiusercontent.com", 778 | "openai.com" 779 | ], 780 | "icon_domain": "openai.com", 781 | "modified_time": "2024-07-22 14:37" 782 | }, 783 | { 784 | "service_id": "origin", 785 | "service_name": "Origin", 786 | "categories": [ 787 | "GAMES" 788 | ], 789 | "domains": [ 790 | "origin.com" 791 | ], 792 | "icon_domain": "origin.com", 793 | "modified_time": "2021-09-14 10:23" 794 | }, 795 | { 796 | "service_id": "pandora", 797 | "service_name": "Pandora", 798 | "categories": [ 799 | "MUSIC" 800 | ], 801 | "domains": [ 802 | "p-cdn.com", 803 | "p-cdn.us", 804 | "pandora.com" 805 | ], 806 | "icon_domain": "pandora.com", 807 | "modified_time": "2021-09-14 10:23" 808 | }, 809 | { 810 | "service_id": "pinterest", 811 | "service_name": "Pinterest", 812 | "categories": [ 813 | "SOCIAL_NETWORKS" 814 | ], 815 | "domains": [ 816 | "pinimg.com", 817 | "pinterest.ca", 818 | "pinterest.cl", 819 | "pinterest.co.kr", 820 | "pinterest.co.uk", 821 | "pinterest.com", 822 | "pinterest.com.mx", 823 | "pinterest.de", 824 | "pinterest.dk", 825 | "pinterest.es", 826 | "pinterest.fr", 827 | "pinterest.jp", 828 | "pinterest.nz", 829 | "pinterest.pt", 830 | "pinterest.ru", 831 | "pinterest.se" 832 | ], 833 | "icon_domain": "pinterest.com", 834 | "modified_time": "2021-09-14 10:23" 835 | }, 836 | { 837 | "service_id": "playstation", 838 | "service_name": "Playstation", 839 | "categories": [ 840 | "GAMES" 841 | ], 842 | "domains": [ 843 | "playstation.com", 844 | "playstation.net", 845 | "sonyentertainmentnetwork.com" 846 | ], 847 | "icon_domain": "playstation.com", 848 | "modified_time": "2021-09-14 10:23" 849 | }, 850 | { 851 | "service_id": "reddit", 852 | "service_name": "Reddit", 853 | "categories": [ 854 | "SOCIAL_NETWORKS" 855 | ], 856 | "domains": [ 857 | "redd.it", 858 | "reddit.com", 859 | "redditinc.com", 860 | "redditmail.com", 861 | "redditmedia.com", 862 | "redditstatic.com", 863 | "redditstatus.com" 864 | ], 865 | "icon_domain": "reddit.com", 866 | "modified_time": "2021-09-14 10:23" 867 | }, 868 | { 869 | "service_id": "rockstargames", 870 | "service_name": "Rockstar Games", 871 | "categories": [ 872 | "GAMES" 873 | ], 874 | "domains": [ 875 | "rockstargames.com" 876 | ], 877 | "icon_domain": "rockstargames.com", 878 | "modified_time": "2021-09-14 10:23" 879 | }, 880 | { 881 | "service_id": "signal", 882 | "service_name": "Signal", 883 | "categories": [ 884 | "MESSENGERS" 885 | ], 886 | "domains": [ 887 | "signal.org", 888 | "whispersystems.org" 889 | ], 890 | "icon_domain": "signal.org", 891 | "modified_time": "2021-09-14 10:23" 892 | }, 893 | { 894 | "service_id": "skype", 895 | "service_name": "Skype", 896 | "categories": [ 897 | "WORK" 898 | ], 899 | "domains": [ 900 | "lync.com", 901 | "sfbassets.com", 902 | "cloudapp.net", 903 | "skype.com", 904 | "skypeassets.com", 905 | "skypeforbusiness.com" 906 | ], 907 | "icon_domain": "skype.com", 908 | "modified_time": "2021-09-14 10:23" 909 | }, 910 | { 911 | "service_id": "slack", 912 | "service_name": "Slack", 913 | "categories": [ 914 | "WORK" 915 | ], 916 | "domains": [ 917 | "slack-core.com", 918 | "slack-edge.com", 919 | "slack-files.com", 920 | "slack-imgs.com", 921 | "slack-msgs.com", 922 | "slack-redir.net", 923 | "slack.com", 924 | "slackb.com" 925 | ], 926 | "icon_domain": "slack.com", 927 | "modified_time": "2021-09-14 10:23" 928 | }, 929 | { 930 | "service_id": "snapchat", 931 | "service_name": "Snapchat", 932 | "categories": [ 933 | "SOCIAL_NETWORKS" 934 | ], 935 | "domains": [ 936 | "addlive.io", 937 | "feelinsonice.com", 938 | "sc-cdn.net", 939 | "sc-corp.net", 940 | "sc-gw.com", 941 | "sc-jpl.com", 942 | "sc-prod.net", 943 | "sc-static.net", 944 | "snap-dev.net", 945 | "snapads.com", 946 | "snapchat.com", 947 | "snapkit.com" 948 | ], 949 | "icon_domain": "snapchat.com", 950 | "modified_time": "2021-09-14 10:23" 951 | }, 952 | { 953 | "service_id": "soundcloud", 954 | "service_name": "SoundCloud", 955 | "categories": [ 956 | "MUSIC" 957 | ], 958 | "domains": [ 959 | "sndcdn.com", 960 | "soundcloud.com" 961 | ], 962 | "icon_domain": "soundcloud.com", 963 | "modified_time": "2021-09-14 10:23" 964 | }, 965 | { 966 | "service_id": "spotify", 967 | "service_name": "Spotify", 968 | "categories": [ 969 | "MUSIC" 970 | ], 971 | "domains": [ 972 | "pscdn.co", 973 | "scdn.co", 974 | "spotify.com", 975 | "spotifycdn.com", 976 | "spotifycdn.net", 977 | "spotilocal.com" 978 | ], 979 | "icon_domain": "spotify.com", 980 | "modified_time": "2021-09-14 10:23" 981 | }, 982 | { 983 | "service_id": "steampowered", 984 | "service_name": "Steam", 985 | "categories": [ 986 | "GAMES" 987 | ], 988 | "domains": [ 989 | "steamcommunity.com", 990 | "steamcontent.com", 991 | "steampowered.com", 992 | "steamstatic.com", 993 | "steamusercontent.com", 994 | "valvesoftware.com" 995 | ], 996 | "icon_domain": "steampowered.com", 997 | "modified_time": "2021-09-14 10:23" 998 | }, 999 | { 1000 | "service_id": "telegram", 1001 | "service_name": "Telegram", 1002 | "categories": [ 1003 | "MESSENGERS" 1004 | ], 1005 | "domains": [ 1006 | "t.me", 1007 | "telegram.org", 1008 | "telesco.pe" 1009 | ], 1010 | "icon_domain": "telegram.org", 1011 | "modified_time": "2021-09-14 10:23" 1012 | }, 1013 | { 1014 | "service_id": "tiktok", 1015 | "service_name": "Tiktok", 1016 | "categories": [ 1017 | "SOCIAL_NETWORKS" 1018 | ], 1019 | "domains": [ 1020 | "bytecdn.cn", 1021 | "bytedanceapi.com", 1022 | "byted.org", 1023 | "byteoversea.com", 1024 | "byteoversea.net", 1025 | "ibytedtos.com", 1026 | "ibyteimg.com", 1027 | "isnssdk.com", 1028 | "muscdn.com", 1029 | "musemuse.cn", 1030 | "musical.ly", 1031 | "sgsnssdk.com", 1032 | "tiktokcdn-eu.com", 1033 | "tiktokcdn-in.com", 1034 | "tiktokcdn.com", 1035 | "tiktokv.com", 1036 | "tiktokv.eu", 1037 | "tiktok.com", 1038 | "ttoversea.net", 1039 | "worldfcdn.com", 1040 | "wsdvs.com" 1041 | ], 1042 | "icon_domain": "tiktok.com", 1043 | "modified_time": "2025-07-04 16:48" 1044 | }, 1045 | { 1046 | "service_id": "tinder", 1047 | "service_name": "Tinder", 1048 | "categories": [ 1049 | "SOCIAL_NETWORKS" 1050 | ], 1051 | "domains": [ 1052 | "gotinder.com", 1053 | "tinder.com", 1054 | "tindersparks.com" 1055 | ], 1056 | "icon_domain": "tinder.com", 1057 | "modified_time": "2021-09-14 10:23" 1058 | }, 1059 | { 1060 | "service_id": "tumblr", 1061 | "service_name": "Tumblr", 1062 | "categories": [ 1063 | "SOCIAL_NETWORKS" 1064 | ], 1065 | "domains": [ 1066 | "tumblr.com" 1067 | ], 1068 | "icon_domain": "tumblr.com", 1069 | "modified_time": "2021-09-14 10:23" 1070 | }, 1071 | { 1072 | "service_id": "twitch", 1073 | "service_name": "Twitch", 1074 | "categories": [ 1075 | "GAMES" 1076 | ], 1077 | "domains": [ 1078 | "ext-twitch.tv", 1079 | "jtvnw.net", 1080 | "live-video.net", 1081 | "ttvnw.net", 1082 | "twitch.tv", 1083 | "twitchcdn.net", 1084 | "twitchsvc.net" 1085 | ], 1086 | "icon_domain": "twitch.com", 1087 | "modified_time": "2021-09-14 10:23" 1088 | }, 1089 | { 1090 | "service_id": "twitter", 1091 | "service_name": "Twitter", 1092 | "categories": [ 1093 | "SOCIAL_NETWORKS" 1094 | ], 1095 | "domains": [ 1096 | "ads-twitter.com", 1097 | "t.co", 1098 | "twimg.com", 1099 | "twitter.com", 1100 | "twttr.com", 1101 | "x.com" 1102 | ], 1103 | "icon_domain": "twitter.com", 1104 | "modified_time": "2021-09-14 10:23" 1105 | }, 1106 | { 1107 | "service_id": "ubisoft", 1108 | "service_name": "Ubisoft", 1109 | "categories": [ 1110 | "GAMES" 1111 | ], 1112 | "domains": [ 1113 | "ubi.com", 1114 | "ubisoft.com", 1115 | "ubisoft.org", 1116 | "ubisoftconnect.com" 1117 | ], 1118 | "icon_domain": "ubisoft.com", 1119 | "modified_time": "2021-09-14 10:23" 1120 | }, 1121 | { 1122 | "service_id": "vimeo", 1123 | "service_name": "Vimeo", 1124 | "categories": [ 1125 | "VIDEO" 1126 | ], 1127 | "domains": [ 1128 | "vimeo.com", 1129 | "vimeocdn.com" 1130 | ], 1131 | "icon_domain": "vimeo.com", 1132 | "modified_time": "2021-09-14 10:23" 1133 | }, 1134 | { 1135 | "service_id": "vk", 1136 | "service_name": "VK", 1137 | "categories": [ 1138 | "SOCIAL_NETWORKS" 1139 | ], 1140 | "domains": [ 1141 | "mycdn.me", 1142 | "okcdn.ru", 1143 | "userapi.com", 1144 | "vk-portal.net", 1145 | "vk.com", 1146 | "vk.ru", 1147 | "vkuseraudio.net", 1148 | "vkuservideo.net" 1149 | ], 1150 | "icon_domain": "vk.com", 1151 | "modified_time": "2025-08-07 12:22" 1152 | }, 1153 | { 1154 | "service_id": "wechat", 1155 | "service_name": "WeChat", 1156 | "categories": [ 1157 | "MESSENGERS" 1158 | ], 1159 | "domains": [ 1160 | "wechat.com" 1161 | ], 1162 | "icon_domain": "wechat.com", 1163 | "modified_time": "2021-09-14 10:23" 1164 | }, 1165 | { 1166 | "service_id": "whatsapp", 1167 | "service_name": "WhatsApp", 1168 | "categories": [ 1169 | "MESSENGERS" 1170 | ], 1171 | "domains": [ 1172 | "whatsapp.com", 1173 | "whatsapp.net" 1174 | ], 1175 | "icon_domain": "whatsapp.com", 1176 | "modified_time": "2021-09-14 10:23" 1177 | }, 1178 | { 1179 | "service_id": "xbox", 1180 | "service_name": "Xbox", 1181 | "categories": [ 1182 | "GAMES" 1183 | ], 1184 | "domains": [ 1185 | "gamepass.com", 1186 | "xbox.com", 1187 | "xboxab.com", 1188 | "xboxab.net", 1189 | "xboxlive.com", 1190 | "xboxservices.com" 1191 | ], 1192 | "icon_domain": "xbox.com", 1193 | "modified_time": "2021-09-14 10:23" 1194 | }, 1195 | { 1196 | "service_id": "yahoo", 1197 | "service_name": "Yahoo", 1198 | "categories": [ 1199 | "SEARCH" 1200 | ], 1201 | "domains": [ 1202 | "yahoo-inc.com", 1203 | "yahoo-net.jp", 1204 | "yahoo.cm", 1205 | "yahoo.cn", 1206 | "yahoo.co.id", 1207 | "yahoo.co.jp", 1208 | "yahoo.co.kr", 1209 | "yahoo.co.uk", 1210 | "yahoo.com", 1211 | "yahoo.com.cn", 1212 | "yahoo.com.hk", 1213 | "yahoo.com.sg", 1214 | "yahoo.com.tw", 1215 | "yahoo.com.vn", 1216 | "yahoo.fr", 1217 | "yahoo.net", 1218 | "yahoo.tw", 1219 | "yahooapis.com", 1220 | "yahooapis.jp", 1221 | "yahoodns.net", 1222 | "yahoofinance.com", 1223 | "yahoomail.jp", 1224 | "yahoosmallbusiness.com", 1225 | "yimg.com" 1226 | ], 1227 | "icon_domain": "yahoo.com", 1228 | "modified_time": "2021-09-14 10:23" 1229 | }, 1230 | { 1231 | "service_id": "yandex", 1232 | "service_name": "Yandex", 1233 | "categories": [ 1234 | "SEARCH" 1235 | ], 1236 | "domains": [ 1237 | "yandex.com", 1238 | "yandex.com.tr", 1239 | "yandex.kz", 1240 | "yandex.net", 1241 | "yandex.ru", 1242 | "yandex.ua", 1243 | "yastatic.net", 1244 | "yandex.by", 1245 | "ya.ru" 1246 | ], 1247 | "icon_domain": "yandex.com", 1248 | "modified_time": "2021-09-14 10:23" 1249 | }, 1250 | { 1251 | "service_id": "youtube", 1252 | "service_name": "YouTube", 1253 | "categories": [ 1254 | "VIDEO" 1255 | ], 1256 | "domains": [ 1257 | "gvt1.com", 1258 | "youtu.be", 1259 | "youtube-nocookie.com", 1260 | "youtube.com", 1261 | "youtubeeducation.com", 1262 | "youtubei.googleapis.com", 1263 | "ytimg.com", 1264 | "googlevideo.com", 1265 | "ggpht.com" 1266 | ], 1267 | "icon_domain": "youtube.com", 1268 | "modified_time": "2025-10-17 15:17" 1269 | }, 1270 | { 1271 | "service_id": "zoom", 1272 | "service_name": "Zoom", 1273 | "categories": [ 1274 | "WORK" 1275 | ], 1276 | "domains": [ 1277 | "zoom.us", 1278 | "zoomgov.com" 1279 | ], 1280 | "icon_domain": "zoom.com", 1281 | "modified_time": "2021-09-14 10:23" 1282 | } 1283 | ] 1284 | -------------------------------------------------------------------------------- /source/companies.json: -------------------------------------------------------------------------------- 1 | { 2 | "timeUpdated": "2022-04-13T08:24:53.623Z", 3 | "companies": { 4 | "adguard": { 5 | "name": "AdGuard", 6 | "websiteUrl": "https://adguard.com/", 7 | "description": "AdGuard offers apps for Android, iOS, Windows, and Mac. With them, you can block ads in browsers and apps, prevent websites and companies from tracking you, and protect yourself from phishing and malware." 8 | }, 9 | "adobe": { 10 | "name": "Adobe Inc.", 11 | "websiteUrl": "http://www.adobe.com/", 12 | "description": "Adobe provides digital media and digital marketing solutions." 13 | }, 14 | "admixer": { 15 | "name": "Admixer", 16 | "websiteUrl": "https://admixer.com/", 17 | "description": "A supply-side platform that connects publishers with global advertisers and agencies, supporting all ad formats and offering real-time revenue optimization." 18 | }, 19 | "adprofex": { 20 | "name": "AdProfex", 21 | "websiteUrl": "https://adprofex.com/", 22 | "description": "AdProfex is a new type of advertising network for news websites and blogs that makes generating revenue a snap." 23 | }, 24 | "advance": { 25 | "name": "Advance Publications, Inc.", 26 | "websiteUrl": "https://www.advance.com/", 27 | "description": "Advance Publications is a holding company whose media properties include newspapers, Conde Nast Publications (Vogue, Vanity Fair, GQ, Architectural Digest and other magazines), Parade Publications, Fairchild Publications and American City Business Journals." 28 | }, 29 | "affilbox": { 30 | "name": "Affilbox", 31 | "websiteUrl": "https://affilbox.com/", 32 | "description": "AffilBox is an affiliate software." 33 | }, 34 | "akamai": { 35 | "name": "Akamai Technologies", 36 | "websiteUrl": "https://www.akamai.com/", 37 | "description": "Akamai is a cloud based content delivery network. They offer application performance services, solutions for digital media and software distribution and storage, online advertising services and other specialized/ Internet-based offerings." 38 | }, 39 | "apple": { 40 | "name": "Apple Inc.", 41 | "websiteUrl": "http://www.apple.com/", 42 | "description": "Apple is an American multinational corporation that designs and markets consumer electronics, computer software, and personal computers." 43 | }, 44 | "apollo_global_management": { 45 | "name": "Apollo Global Management, Inc.", 46 | "websiteUrl": "https://www.apollo.com/", 47 | "description": "Apollo Global Management, Inc. is an American private equity firm. It provides investment management and invests in credit, private equity, and real assets." 48 | }, 49 | "appsflyer": { 50 | "name": "AppsFlyer", 51 | "websiteUrl": "https://www.appsflyer.com/", 52 | "description": "AppsFlyer is the global leading platform for Mobile Attribution & Marketing Analytics." 53 | }, 54 | "atlassian": { 55 | "name": "Atlassian", 56 | "websiteUrl": "https://www.atlassian.com/", 57 | "description": "Atlassian Corporation is an American-Australian software company that develops products for software developers, project managers, and other software development teams." 58 | }, 59 | "audience_square": { 60 | "name": "Audience Square", 61 | "websiteUrl": "http://www.audiencesquare.fr/", 62 | "description": "Audience Square is a SAS whose shareholders are 10 of the biggest French media groups." 63 | }, 64 | "australian_government": { 65 | "name": "Australian Government", 66 | "websiteUrl": "https://www.australia.gov.au", 67 | "description": "The Australian Government, also known as the Commonwealth Government, is the national government of Australia." 68 | }, 69 | "bbk": { 70 | "name": "BBK Electronics", 71 | "websiteUrl": "https://www.bbk-electronics.com", 72 | "description": "BBK Electronics Corporation is a company specializing in developing consumer electronics products." 73 | }, 74 | "bitwarden": { 75 | "name": "Bitwarden", 76 | "websiteUrl": "https://bitwarden.com/", 77 | "description": "Bitwarden is an integrated open source password management solution for individuals, teams, and business organizations." 78 | }, 79 | "blackstone": { 80 | "name": "Blackstone, Inc.", 81 | "websiteUrl": "https://www.blackstone.com/", 82 | "description": "Blackstone Group is a private equity firm that invests in buyouts, debt, mergers and acquisitions, mezzanine, and growth capital." 83 | }, 84 | "branch_metrics_inc": { 85 | "name": "Branch Metrics", 86 | "websiteUrl": "https://branch.io/", 87 | "description": "Branch provides free deep linking technology for mobile app developers to gain and retain users. We're on a mission to help solve mobile discovery by connecting users to relevant app content through deep links." 88 | }, 89 | "braze": { 90 | "name": "Braze, Inc.", 91 | "websiteUrl": "https://www.braze.com/", 92 | "description": "Braze is a comprehensive customer engagement platform that powers relevant and memorable experiences between consumers and the brands they love. Context underpins every Braze interaction, helping brands foster human connection with consumers." 93 | }, 94 | "button": { 95 | "name": "Button", 96 | "websiteUrl": "https://www.usebutton.com/", 97 | "description": "Button is the mobile commerce technology company that is powering a commerce-driven internet." 98 | }, 99 | "bytedance_inc": { 100 | "name": "ByteDance Ltd.", 101 | "websiteUrl": "https://www.bytedance.com/", 102 | "description": "ByteDance, a Chinese multinational internet technology company headquartered in Beijing and legally domiciled in the Cayman Islands. Its main product is TikTok, known in China as Douyin, a video-focused social networking service." 103 | }, 104 | "canonical": { 105 | "name": "Canonical", 106 | "websiteUrl": "https://canonical.com/", 107 | "description": "Canonical makes open source secure, reliable and easy to use, providing support for Ubuntu and a portfolio of enterprise-grade technologies." 108 | }, 109 | "clickaine": { 110 | "name": "Clickaine", 111 | "websiteUrl": "https://clickaine.com/", 112 | "description": "Clickaine is a digital advertising network that provides a wide range of advertising solutions for publishers and advertisers." 113 | }, 114 | "cloudflare": { 115 | "name": "Cloudflare, Inc.", 116 | "websiteUrl": "https://www.cloudflare.com/", 117 | "description": "Cloudflare is a web performance and security company that provides online services to protect and accelerate websites online. " 118 | }, 119 | "comodo": { 120 | "name": "Comodo Security Solutions, Inc.", 121 | "websiteUrl": "http://www.comodo.com/", 122 | "description": "Comodo is a global leader in cyber security solutions including antivirus, internet security, firewall, endpoint security, cloud based solutions and other PC security software for enterprises and consumers." 123 | }, 124 | "digioh": { 125 | "name": "Digioh", 126 | "websiteUrl": "https://digioh.com/", 127 | "description": "Digioh is a marketing company that offers lead generation services to its clients." 128 | }, 129 | "digital_turbine": { 130 | "name": "Digital Turbine, Inc.", 131 | "websiteUrl": "http://www.digitalturbine.com/", 132 | "description": "Digital Turbine offers a one-stop platform for user acquisition growth and monetization." 133 | }, 134 | "disney": { 135 | "name": "The Walt Disney Company", 136 | "websiteUrl": "https://thewaltdisneycompany.com/", 137 | "description": "The Walt Disney Company started as a cartoon studio and evolves into sports coverage and television shows." 138 | }, 139 | "domainglass": { 140 | "name": "Domain Glass", 141 | "websiteUrl": "https://domain.glass/", 142 | "description": "DNS Record, IP address hostname, and WHOIS lookup information." 143 | }, 144 | "element": { 145 | "name": "Element", 146 | "websiteUrl": "https://element.io/", 147 | "description": "Element is a Matrix-based end-to-end encrypted messenger and secure collaboration app." 148 | }, 149 | "edgio": { 150 | "name": "Edgio", 151 | "websiteUrl": "https://edg.io/", 152 | "description": "Edgio is a content delivery network (CDN) service provider that enables organizations to deliver faster websites, more responsive applications, and quality video." 153 | }, 154 | "electronic_arts": { 155 | "name": "Electronic Arts", 156 | "websiteUrl": "https://www.ea.com/", 157 | "description": "Electronic Arts delivers games, content, and online services for internet-connected consoles, PCs, mobile phones, and tablets." 158 | }, 159 | "facebook": { 160 | "name": "Facebook", 161 | "websiteUrl": "https://www.facebook.com/", 162 | "description": "Facebook is an online social network accessible to anyone with an active email address. People use Facebook to keep up with friends, upload photos, share links and videos, and learn more about the people they meet." 163 | }, 164 | "farlight": { 165 | "name": "Farlight Pte Ltd.", 166 | "websiteUrl": "https://farlightgames.com/", 167 | "description": "Farlight Games is a publishing company and the global publishing brand of Lilith Games." 168 | }, 169 | "freeview": { 170 | "name": "Freeview", 171 | "websiteUrl": "https://freeview.com.au/", 172 | "description": "Freeview is the brand name of the digital terrestrial television platform in Australia intended to bring all of free-to-air broadcasters onto a consistent marketing platform, to compete against subscription television, in particular Foxtel." 173 | }, 174 | "google": { 175 | "name": "Google", 176 | "websiteUrl": "http://www.google.com", 177 | "description": "Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, search engine, cloud computing, software, and hardware." 178 | }, 179 | "id5-sync": { 180 | "name": "ID5 Sync", 181 | "websiteUrl": "https://id5.io/", 182 | "description": "ID5 is the leading identity provider powering addressable advertising for brands, publishers, and their technology partners across all media environments." 183 | }, 184 | "identrust": { 185 | "name": "IdenTrust, Inc.", 186 | "websiteUrl": "https://identrust.com/", 187 | "description": "IdenTrust, part of HID Global and headquartered in Salt Lake City, Utah, is a public key certificate authority that provides digital certificates to financial institutions, healthcare providers, government agencies and enterprises. As a certificate authority (CA), IdenTrust provides public key infrastructure (PKI) and validation for digital certificates, including TLS/SSL certificates, email security via S/MIME certificates, digital signature certificates, code signing certificates and x.509 certificates for protecting network and IoT devices." 188 | }, 189 | "iqiyi": { 190 | "name": "iQiyi", 191 | "websiteUrl": "https://www.iqiyi.com/", 192 | "description": "iQiyi is a Chinese ad-supported television and movie portal providing fully-licensed, high-definition, professionally produced content" 193 | }, 194 | "isrg": { 195 | "name": "Internet Security Research Group", 196 | "websiteUrl": "https://www.abetterinternet.org", 197 | "description": "Digital infrastructure for a more secure and privacy-respecting world." 198 | }, 199 | "jetbrains": { 200 | "name": "JetBrains", 201 | "websiteUrl": "https://www.jetbrains.com/", 202 | "description": "JetBrains is a Czech software development private limited company which makes tools for software developers and project managers." 203 | }, 204 | "karambasecurity": { 205 | "name": "Karamba Security", 206 | "websiteUrl": "https://karambasecurity.com/", 207 | "description": "Karamba Security provides industry-leading, award winning, end-to-end cybersecurity solutions for vehicles and connected systems." 208 | }, 209 | "kik": { 210 | "name": "Kik", 211 | "websiteUrl": "https://kik.com/", 212 | "description": "Kik Messenger, commonly called Kik, is a freeware instant messaging mobile app from the Canadian company Kik Interactive, available on iOS and Android operating systems." 213 | }, 214 | "lgcorp": { 215 | "name": "LG Group", 216 | "websiteUrl": "https://www.lgcorp.com/", 217 | "description": "LG is a leading manufacturer of consumer and commercial products ranging from TVs, home appliances, air solutions, monitors, service robots, automotive components and its premium LG SIGNATURE and intelligent LG ThinQ brands are familiar names world over." 218 | }, 219 | "livinglymedia": { 220 | "name": "Livingly Media", 221 | "websiteUrl": "https://www.livinglymedia.com/", 222 | "description": "Livingly Media is an online publisher owning lifestyle and entertainment news sites." 223 | }, 224 | "markmonitor": { 225 | "name": "MarkMonitor", 226 | "websiteUrl": "https://www.markmonitor.com/", 227 | "description": "\\\"When the world's leading brands rely on you to protect their revenue and reputation in the digital world, you develop powerful insights and unrivalled methodologies to help combat sophisticated, evolving online threats. MarkMonitor clients look to our unique combination of industry-leading expertise, advanced technologies and extensive industry relationships to preserve marketing investments, revenues and customer trust.\\\"" 228 | }, 229 | "matrix": { 230 | "name": "Matrix", 231 | "websiteUrl": "https://matrix.org/", 232 | "description": "Matrix is an open source project that publishes the Matrix open standard for secure, decentralised, real-time communication, and its Apache licensed reference implementations." 233 | }, 234 | "medialab": { 235 | "name": "MediaLab.Ai", 236 | "websiteUrl": "https://medialab.la/", 237 | "description": "MediaLab is a media & technology company focused on acquiring and growing properties and global brands." 238 | }, 239 | "meganz": { 240 | "name": "Mega Ltd.", 241 | "websiteUrl": "https://mega.io/", 242 | "description": "MEGA was the first to introduce fully featured, end-to-end encrypted cloud storage and communications, accessed through web browsers and mobile devices." 243 | }, 244 | "meta": { 245 | "name": "Meta Platforms, Inc.", 246 | "websiteUrl": "https://www.meta.com/", 247 | "description": "Meta builds technologies that help people connect, find communities and grow businesses." 248 | }, 249 | "microsoft": { 250 | "name": "Microsoft Corporation", 251 | "websiteUrl": "https://www.microsoft.com/", 252 | "description": "Microsoft is an American multinational corporation that develops, manufactures, licenses, supports, and sells a range of software products and services." 253 | }, 254 | "mobvista": { 255 | "name": "Mobvista", 256 | "websiteUrl": "https://www.mobvista.com/", 257 | "description": "Mobvista is a technology platform dedicated to driving global business growth in the digital age using big data & AI." 258 | }, 259 | "mozilla": { 260 | "name": "Mozilla Foundation", 261 | "websiteUrl": "https://www.mozilla.org/", 262 | "description": "Mozilla is a global nonprofit dedicated to keeping the Internet a global public resource that is open and accessible to all." 263 | }, 264 | "nab": { 265 | "name": "National Australia Bank", 266 | "websiteUrl": "https://www.nab.com.au/", 267 | "description": "National Australia Bank is one of the four largest financial institutions in Australia in terms of market capitalisation, earnings and customers." 268 | }, 269 | "netflix": { 270 | "name": "Netflix, Inc.", 271 | "websiteUrl": "https://www.netflix.com/", 272 | "description": "Netflix is a streaming service that offers a wide variety of award-winning TV shows, movies, anime, documentaries, and more on thousands of internet-connected devices." 273 | }, 274 | "netify": { 275 | "name": "Netify", 276 | "websiteUrl": "https://www.netify.ai/", 277 | "description": "Netify provides network intelligence and visibility." 278 | }, 279 | "nine_entertainment": { 280 | "name": "Nine Entertainment Co.", 281 | "websiteUrl": "https://www.nineforbrands.com.au/", 282 | "description": "Nine Entertainment is an Australian publicly listed media company with holdings in radio and television broadcasting, newspaper publications and digital media." 283 | }, 284 | "nonli": { 285 | "name": "Nonli", 286 | "websiteUrl": "https://www.nonli.com/", 287 | "description": "Nonli is focused on increasing and monetizing social media traffic." 288 | }, 289 | "notion": { 290 | "name": "Notion Labs Inc.", 291 | "websiteUrl": "https://www.notion.so/", 292 | "description": "Notion Labs, Inc. provides technology solutions. The Company offers an all-in-one workspace for teams and companies to share documents and knowledge, manage projects, and collaborate." 293 | }, 294 | "network_time_foundation": { 295 | "name": "Network Time Foundation", 296 | "websiteUrl": "https://www.nwtime.org/", 297 | "description": "Network Time Foundation provides direct services and support to improve the state of accurate computer network timekeeping." 298 | }, 299 | "openai": { 300 | "name": "OpenAI", 301 | "websiteUrl": "https://www.openai.com/", 302 | "description": "OpenAI is an AI research and deployment company that conducts research and implements machine learning." 303 | }, 304 | "oracle": { 305 | "name": "Oracle Corporation", 306 | "websiteUrl": "http://www.oracle.com/", 307 | "description": "Oracle is an integrated cloud applications and platform services firm that offers complete SaaS application suites for ERP, HCM and CX." 308 | }, 309 | "oztam": { 310 | "name": "OzTAM", 311 | "websiteUrl": "https://oztam.com.au/", 312 | "description": "OzTAM is the official source of television audience measurement (TAM) covering Australia’s five mainland metropolitan markets and nationally for subscription television." 313 | }, 314 | "perfops": { 315 | "name": "PerfOps", 316 | "websiteUrl": "https://perfops.net/", 317 | "description": "Distributed infrastructure monitoring, smart traffic load-balancing and routing." 318 | }, 319 | "proton_foundation": { 320 | "name": "Proton Foundation", 321 | "websiteUrl": "https://proton.me/foundation/", 322 | "description": "The Proton Foundation is a non-profit promoting privacy-focused, encrypted digital services like ProtonMail, advocating for internet privacy, security, and transparency worldwide." 323 | }, 324 | "qualcomm": { 325 | "name": "Qualcomm", 326 | "websiteUrl": "https://www.qualcomm.com/", 327 | "description": "Qualcomm is an American multinational corporation that creates semiconductors, software, and services related to wireless technology." 328 | }, 329 | "samsung": { 330 | "name": "Samsung", 331 | "websiteUrl": "https://www.samsung.com/", 332 | "description": "Samsung Electronics Co., Ltd. is a South Korean multinational electronics corporation headquartered in Yeongtong-gu, Suwon, South Korea." 333 | }, 334 | "sectigo": { 335 | "name": "Sectigo Limited", 336 | "websiteUrl": "https://sectigo.com/", 337 | "description": "Sectigo is a leading cybersecurity provider of digital identity solutions, including TLS / SSL certificates, DevOps, IoT, and enterprise-grade PKI management, as well as multi-layered web security." 338 | }, 339 | "seven_group_holdings": { 340 | "name": "Seven Group Holdings Limited", 341 | "websiteUrl": "https://sevengroup.com.au", 342 | "description": "Seven Group Holdings Limited (SGH) is a leading Australian diversified operating and investment group with market leading businesses and investments in industrial services, media and energy." 343 | }, 344 | "showrss": { 345 | "name": "showRSS", 346 | "websiteUrl": "https://showrss.info/", 347 | "description": "showRSS is an internet tool that lets you keep track of your favorite TV shows." 348 | }, 349 | "similarweb": { 350 | "name": "SimilarWeb Ltd.", 351 | "websiteUrl": "https://www.similarweb.com/", 352 | "description": "SimilarWeb offers an AI-based market intelligence platform that helps monitor web and mobile app traffic." 353 | }, 354 | "snap_technologies": { 355 | "name": "Snap Inc.", 356 | "websiteUrl": "https://www.snapchat.com/", 357 | "description": "Snap Inc. is a camera company.\\n\\nWe believe that reinventing the camera represents our greatest opportunity to improve the way people live and communicate.\\nOur products empower people to express themselves, live in the moment, learn about the world, and have fun together." 358 | }, 359 | "softbank": { 360 | "name": "SoftBank Group Corp.", 361 | "websiteUrl": "https://group.softbank/", 362 | "description": "SoftBank Group Corp. is a Japanese multinational investment holding company headquartered in Minato, Tokyo which focuses on investment management." 363 | }, 364 | "solaredge": { 365 | "name": "SolarEdge Technologies, Inc.", 366 | "websiteUrl": "https://www.solaredge.com/", 367 | "description": "SolarEdge offers optimizers, inverters, monitoring equipment, tools, and accessories for power harvesting, conversion, and efficiency." 368 | }, 369 | "sonos": { 370 | "name": "Sonos, Inc.", 371 | "websiteUrl": "https://www.sonos.com/", 372 | "description": "Sonos, Inc. is an American developer and manufacturer of audio products best known for its multi-room audio products." 373 | }, 374 | "sungrow": { 375 | "name": "Sungrow Power Supply Company Limited", 376 | "websiteUrl": "https://sungrowpower.com/", 377 | "description": "Sungrow Power Supply Company Limited develops, produces, sells and provides services for solar PV inverters, wind power converters and other power supply. The Company also provides system solutions to renewable energy industry users." 378 | }, 379 | "supercell": { 380 | "name": "Supercell", 381 | "websiteUrl": "https://supercell.com/", 382 | "description": "Supercell is a video game development company for tablets and smart phones." 383 | }, 384 | "switchtv": { 385 | "name": "Switch Media", 386 | "websiteUrl": "https://www.switch.tv/", 387 | "description": "Switch Media has successfully delivered complex, multi-award-winning online video solutions for major brands and global live streaming events." 388 | }, 389 | "take-two": { 390 | "name": "Take-Two Interactive Software, Inc.", 391 | "websiteUrl": "https://www.take2games.com/", 392 | "description": "Take-Two Interactive Software, Inc. is an American video game holding company based in New York City founded by Ryan Brant in September 1993." 393 | }, 394 | "telstra": { 395 | "name": "Telstra", 396 | "websiteUrl": "https://www.telstra.com.au/", 397 | "description": "Telstra is Australia's leading telecommunications and technology company, offering a full range of communications services and competing in all telecommunications markets." 398 | }, 399 | "tencent": { 400 | "name": "Tencent", 401 | "websiteUrl": "https://www.tencent.com/", 402 | "description": "Tencent is an internet service portal offering value-added internet, mobile, telecom, and online advertising services." 403 | }, 404 | "twitter": { 405 | "name": "X (formerly Twitter)", 406 | "websiteUrl": "https://twitter.com/", 407 | "description": "X is an online social network and social media service operated by the American company X Corp. which was re-branded from Twitter, Inc." 408 | }, 409 | "unity": { 410 | "name": "Unity Technologies", 411 | "websiteUrl": "https://unity.com/", 412 | "description": "Unity is a cross-platform game engine developed by Unity Technologies, first announced and released in June 2005 at Apple Worldwide Developers Conference as a Mac OS X game engine. The engine has since been gradually extended to support a variety of desktop, mobile, console and virtual reality platforms. It is particularly popular for iOS and Android mobile game development, is considered easy to use for beginner developers, and is popular for indie game development." 413 | }, 414 | "upland": { 415 | "name": "Upland Software, Inc.", 416 | "websiteUrl": "https://uplandsoftware.com/", 417 | "description": "Upland Software provides mobile app, marketing, and analytics services." 418 | }, 419 | "verizon": { 420 | "name": "Verizon", 421 | "websiteUrl": "https://www.verizon.com/", 422 | "description": "Verizon (short for Verizon Communications Inc.), is an American multinational telecommunications conglomerate and a corporate component of the Dow Jones Industrial Average. In 2015, Verizon expanded its business into content ownership by acquiring AOL, and two years later it acquired Yahoo!. AOL and Yahoo were amalgamated into a new division named Oath Inc." 423 | }, 424 | "vk": { 425 | "name": "VK", 426 | "websiteUrl": "https://vk.company", 427 | "description": "VK is a Russian technology company. It started in 1998 as an e-mail service and went on to become a major corporate figure in the Russian-speaking segment of the Internet." 428 | }, 429 | "yandex": { 430 | "name": "Yandex", 431 | "websiteUrl": "https://www.yandex.com/", 432 | "description": "Yandex is a Russian search engine and Internet services firm. They also offer a variety of other online services including: news, weather, traffic, maps, personal email, and a web analytics platform. Yandex also operates an ad network." 433 | }, 434 | "ibexa": { 435 | "name": "Ibexa Personalizaton Software", 436 | "websiteUrl": "https://www.ibexa.co.net/", 437 | "description": "Ibexa centers on digital transformation, content management, consultation and training to help B2B companies in digital sales strategies." 438 | }, 439 | "xenmedia": { 440 | "name": "Xen Media", 441 | "websiteUrl": "https://www.xenmedia.net/", 442 | "description": "Xen Media offers media planning, video production, digital marketing, SEO, social media marketing, website and app development services." 443 | }, 444 | "xiaomi": { 445 | "name": "Xiaomi Inc.", 446 | "websiteUrl": "https://www.mi.com/", 447 | "description": "Xiaomi is a Chinese designer and manufacturer of consumer electronics and related software, home appliances, and household hardware. " 448 | }, 449 | "xhamster": { 450 | "name": "xHamster", 451 | "websiteUrl": "https://xhamster.com/", 452 | "description": "xHamster is a Cypriot pornographic media and social networking site headquartered in Limassol, Cyprus." 453 | }, 454 | "xnxx": { 455 | "name": "XNXX", 456 | "websiteUrl": "https://www.xnxx.com", 457 | "description": "XNXX is a French website for sharing and viewing pornographic videos." 458 | }, 459 | "xvideos": { 460 | "name": "Xvideos", 461 | "websiteUrl": "https://www.xvideos.com", 462 | "description": "XVideos serves as a pornographic media aggregator." 463 | }, 464 | "xxxlshop.de": { 465 | "name": "XXXLutz", 466 | "websiteUrl": "https://www.xxxlutz.de/", 467 | "description": "XXXLutz is a leading furniture dealer in Europe, founded in 1945." 468 | }, 469 | "yabbi": { 470 | "name": "Yabbi", 471 | "websiteUrl": "https://yabbi.me/", 472 | "description": "A Russian technology company engaged in the development of software systems for advertisers and publishers specializing in mobile applications." 473 | }, 474 | "youporn": { 475 | "name": "YouPorn", 476 | "websiteUrl": "https://www.youporn.com/", 477 | "description": "YouPorn is a free pornographic video sharing website that launched in August of 2006." 478 | }, 479 | "zeusclicks": { 480 | "name": "ZeusClicks", 481 | "websiteUrl": "http://zeusclicks.com/", 482 | "description": "ZeusClicks is a leading digital advertising firm with high impact direct response marketing." 483 | }, 484 | "1822direkt": { 485 | "name": "1822direkt", 486 | "websiteUrl": "https://www.1822direkt.de/", 487 | "description": "1822direkt provides online banking and financial services." 488 | }, 489 | "1und1": { 490 | "name": "1&1 IONOS", 491 | "websiteUrl": "http://www.ionos.com/", 492 | "description": "1&1 IONOS provides web hosting solutions for private users, as well as high-end products for small-and medium-sized businesses." 493 | }, 494 | "24-ads.com": { 495 | "name": "24-ADS", 496 | "websiteUrl": "http://www.24-ads.com/", 497 | "description": "24 - Ads is a consulting agency that offers publishing and advertising services." 498 | }, 499 | "24smi": { 500 | "name": "24msi.org", 501 | "websiteUrl": "https://24smi.org/", 502 | "description": "A news portal about show business and gossip, the latest events in Russia and the world, exclusive interviews, news from the world of cinema and television, interesting facts and much more." 503 | }, 504 | "3gpp": { 505 | "name": "3GPP", 506 | "websiteUrl": "https://www.3gpp.org/", 507 | "description": "The 3GPP Network is a mobile technology standard for bridging core cellular networks with the Internet. Services include enabling WiFi calling, roaming, and signaling." 508 | }, 509 | "4chan": { 510 | "name": "4Chan", 511 | "websiteUrl": "https://www.4chan.org/", 512 | "description": "4chan is an image-based bulletin board where users can post comments and share images." 513 | }, 514 | "4finance": { 515 | "name": "4finance.com", 516 | "websiteUrl": "https://4finance.com/", 517 | "description": "4Europe’s largest online and mobile consumer lending group, providing convenient and responsible access to credit across 11 countries." 518 | }, 519 | "7tv": { 520 | "name": "7tv.app", 521 | "websiteUrl": "https://www.7tv.app/", 522 | "description": "The Emote Platform for All. Manage hundreds of emotes for your Twitch or YouTube channels with ease." 523 | } 524 | } 525 | } 526 | -------------------------------------------------------------------------------- /source/vpn_services.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "service_id": "adobe_creative_cloud", 4 | "service_name": "Adobe Creative Cloud", 5 | "categories": [ 6 | "WORK" 7 | ], 8 | "domains": [ 9 | "adobe.com", 10 | "adobe.io", 11 | "adobecc.com", 12 | "adobecces.com", 13 | "adobeccstatic.com", 14 | "adobedtm.com", 15 | "adobeexchange.com", 16 | "adobegenuine.com", 17 | "adobegov.com", 18 | "adobe-identity.com", 19 | "adobejanus.com", 20 | "adobelogin.com", 21 | "adobeoobe.com", 22 | "adobeprojectm.com", 23 | "adobesc.com", 24 | "adobe-services.com", 25 | "adobess.com", 26 | "adobesunbreak.com", 27 | "adobetag.com", 28 | "behance.net", 29 | "ftcdn.net", 30 | "typekit.com", 31 | "typekit.net", 32 | "slp-statics.astockcdn.net" 33 | ], 34 | "icon_domain": "adobe.com" 35 | }, 36 | { 37 | "service_id": "aliexpress", 38 | "service_name": "Aliexpress", 39 | "categories": [ 40 | "SHOP" 41 | ], 42 | "domains": [ 43 | "aliexpress.com", 44 | "aliexpress.ru" 45 | ], 46 | "icon_domain": "aliexpress.com" 47 | }, 48 | { 49 | "service_id": "amazon", 50 | "service_name": "Amazon", 51 | "categories": [ 52 | "SHOP" 53 | ], 54 | "domains": [ 55 | "a2z.com", 56 | "amazon-corp.com", 57 | "amazon.ca", 58 | "amazon.co.jp", 59 | "amazon.co.uk", 60 | "amazon.com", 61 | "amazon.com.au", 62 | "amazon.com.mx", 63 | "amazon.de", 64 | "amazon.es", 65 | "amazon.eu", 66 | "amazon.fr", 67 | "amazon.in", 68 | "amazon.it", 69 | "amazon.nl", 70 | "amazon.sa", 71 | "amazonbrowserapp.co.uk", 72 | "amazonbrowserapp.es", 73 | "amazoncognito.com", 74 | "amazoncrl.com", 75 | "amazonpay.com", 76 | "amazonpay.in", 77 | "amazontrust.com", 78 | "associates-amazon.com", 79 | "images-amazon.com", 80 | "media-amazon.com", 81 | "ssl-images-amazon.com" 82 | ], 83 | "icon_domain": "amazon.com" 84 | }, 85 | { 86 | "service_id": "atlassian", 87 | "service_name": "Atlassian", 88 | "categories": [ 89 | "WORK" 90 | ], 91 | "domains": [ 92 | "atlassian.com", 93 | "atlassian.net", 94 | "bitbucket.org" 95 | ], 96 | "icon_domain": "atlassian.com" 97 | }, 98 | { 99 | "service_id": "baidu", 100 | "service_name": "Baidu", 101 | "categories": [ 102 | "SEARCH" 103 | ], 104 | "domains": [ 105 | "baidu.com", 106 | "baiducontent.com", 107 | "baidupcs.com", 108 | "baidustatic.com", 109 | "bcebos.com", 110 | "bdimg.com", 111 | "bdstatic.com", 112 | "gshifen.com", 113 | "popin.cc", 114 | "shifen.com", 115 | "wshifen.com" 116 | ], 117 | "icon_domain": "baidu.com" 118 | }, 119 | { 120 | "service_id": "bing", 121 | "service_name": "Bing", 122 | "categories": [ 123 | "SEARCH" 124 | ], 125 | "domains": [ 126 | "bi.ng", 127 | "bing.com", 128 | "bing.com.bo", 129 | "bing.com.co", 130 | "bing.com.cy", 131 | "bing.com.gt", 132 | "bing.jp", 133 | "bing.net", 134 | "bingapis.com", 135 | "bingforbusiness.com" 136 | ], 137 | "icon_domain": "bing.com" 138 | }, 139 | { 140 | "service_id": "craigslist", 141 | "service_name": "Craigslist", 142 | "categories": [ 143 | "SHOP" 144 | ], 145 | "domains": [ 146 | "craigslist.ca", 147 | "craigslist.org" 148 | ], 149 | "icon_domain": "craigslist.com" 150 | }, 151 | { 152 | "service_id": "deezer", 153 | "service_name": "Deezer", 154 | "categories": [ 155 | "MUSIC" 156 | ], 157 | "domains": [ 158 | "deezer.com", 159 | "dzcdn.net" 160 | ], 161 | "icon_domain": "deezer.com" 162 | }, 163 | { 164 | "service_id": "discord", 165 | "service_name": "Discord", 166 | "categories": [ 167 | "MESSENGERS" 168 | ], 169 | "domains": [ 170 | "discord.com", 171 | "discord.gg", 172 | "discord.media", 173 | "discordapp.com", 174 | "discordapp.net", 175 | "discordstatus.com" 176 | ], 177 | "icon_domain": "discord.com" 178 | }, 179 | { 180 | "service_id": "disneyplus", 181 | "service_name": "Disney Plus", 182 | "categories": [ 183 | "VIDEO" 184 | ], 185 | "domains": [ 186 | "disney-plus.net", 187 | "disneyplus.com", 188 | "dssott.com", 189 | "bamgrid.com" 190 | ], 191 | "icon_domain": "disneyplus.com" 192 | }, 193 | { 194 | "service_id": "duckduckgo", 195 | "service_name": "DuckDuckGo", 196 | "categories": [ 197 | "SEARCH" 198 | ], 199 | "domains": [ 200 | "duckduckgo.com" 201 | ], 202 | "icon_domain": "duckduckgo.com" 203 | }, 204 | { 205 | "service_id": "ebay", 206 | "service_name": "Ebay", 207 | "categories": [ 208 | "SHOP" 209 | ], 210 | "domains": [ 211 | "ebay-us.com", 212 | "ebay.be", 213 | "ebay.ca", 214 | "ebay.co.jp", 215 | "ebay.co.uk", 216 | "ebay.com", 217 | "ebay.com.au", 218 | "ebay.com.my", 219 | "ebay.fr", 220 | "ebayadservices.com", 221 | "ebaycdn.net", 222 | "ebaydesc.com", 223 | "ebayimg.com", 224 | "ebayrtm.com", 225 | "ebaystatic.com", 226 | "ebaystratus.com" 227 | ], 228 | "icon_domain": "ebay.com" 229 | }, 230 | { 231 | "service_id": "epicgames", 232 | "service_name": "Epic Games", 233 | "categories": [ 234 | "GAMES" 235 | ], 236 | "domains": [ 237 | "epicgames.com", 238 | "epicgames.dev", 239 | "epicgames.net", 240 | "unrealengine.com" 241 | ], 242 | "icon_domain": "epicgames.com" 243 | }, 244 | { 245 | "service_id": "etsy", 246 | "service_name": "Etsy", 247 | "categories": [ 248 | "SHOP" 249 | ], 250 | "domains": [ 251 | "etsy.com", 252 | "etsy.me", 253 | "etsystatic.com" 254 | ], 255 | "icon_domain": "etsy.com" 256 | }, 257 | { 258 | "service_id": "facebook", 259 | "service_name": "Facebook", 260 | "categories": [ 261 | "SOCIAL_NETWORKS" 262 | ], 263 | "domains": [ 264 | "accountkit.com", 265 | "atdmt.com", 266 | "atlassolutions.com", 267 | "facebook.com", 268 | "facebook.net", 269 | "facebookmail.com", 270 | "fb.com", 271 | "fb.gg", 272 | "fb.watch", 273 | "fbcdn.net", 274 | "fbsbx.com", 275 | "fbwat.ch", 276 | "parse.com" 277 | ], 278 | "icon_domain": "facebook.com" 279 | }, 280 | { 281 | "service_id": "flickr", 282 | "service_name": "Flickr", 283 | "categories": [ 284 | "SOCIAL_NETWORKS" 285 | ], 286 | "domains": [ 287 | "flickr.com", 288 | "flickrprints.com", 289 | "staticflickr.com" 290 | ], 291 | "icon_domain": "flickr.com" 292 | }, 293 | { 294 | "service_id": "github", 295 | "service_name": "GitHub", 296 | "categories": [ 297 | "WORK" 298 | ], 299 | "domains": [ 300 | "ghcr.io", 301 | "github.com", 302 | "github.dev", 303 | "github.io", 304 | "githubapp.com", 305 | "githubassets.com", 306 | "githubcopilot.com", 307 | "githubusercontent.com" 308 | ], 309 | "icon_domain": "github.com" 310 | }, 311 | { 312 | "service_id": "gitlab", 313 | "service_name": "GitLab", 314 | "categories": [ 315 | "WORK" 316 | ], 317 | "domains": [ 318 | "gitlab-static.net", 319 | "gitlab.com", 320 | "gitlab.io", 321 | "gitlab.net" 322 | ], 323 | "icon_domain": "gitlab.com" 324 | }, 325 | { 326 | "service_id": "gog", 327 | "service_name": "GOG", 328 | "categories": [ 329 | "GAMES" 330 | ], 331 | "domains": [ 332 | "gog-statics.com", 333 | "gog.com", 334 | "gogalaxy.com", 335 | "gogcdn.net" 336 | ], 337 | "icon_domain": "gog.com" 338 | }, 339 | { 340 | "service_id": "google", 341 | "service_name": "Google", 342 | "categories": [ 343 | "SEARCH" 344 | ], 345 | "domains": [ 346 | "1e100.net", 347 | "g.co", 348 | "goo.gl", 349 | "google.ad", 350 | "google.ae", 351 | "google.al", 352 | "google.am", 353 | "google.as", 354 | "google.at", 355 | "google.az", 356 | "google.ba", 357 | "google.be", 358 | "google.bf", 359 | "google.bg", 360 | "google.bi", 361 | "google.bj", 362 | "google.bs", 363 | "google.bt", 364 | "google.by", 365 | "google.ca", 366 | "google.cat", 367 | "google.cd", 368 | "google.cf", 369 | "google.cg", 370 | "google.ch", 371 | "google.ci", 372 | "google.cl", 373 | "google.cm", 374 | "google.cn", 375 | "google.co.ao", 376 | "google.co.bw", 377 | "google.co.ck", 378 | "google.co.cr", 379 | "google.co.id", 380 | "google.co.il", 381 | "google.co.in", 382 | "google.co.jp", 383 | "google.co.ke", 384 | "google.co.kr", 385 | "google.co.ls", 386 | "google.co.ma", 387 | "google.co.mz", 388 | "google.co.nz", 389 | "google.co.th", 390 | "google.co.tz", 391 | "google.co.ug", 392 | "google.co.uk", 393 | "google.co.uz", 394 | "google.co.ve", 395 | "google.co.vi", 396 | "google.co.za", 397 | "google.co.zm", 398 | "google.co.zw", 399 | "google.com", 400 | "google.com.af", 401 | "google.com.ag", 402 | "google.com.ai", 403 | "google.com.ar", 404 | "google.com.au", 405 | "google.com.bd", 406 | "google.com.bh", 407 | "google.com.bn", 408 | "google.com.bo", 409 | "google.com.br", 410 | "google.com.bz", 411 | "google.com.co", 412 | "google.com.cu", 413 | "google.com.cy", 414 | "google.com.do", 415 | "google.com.ec", 416 | "google.com.eg", 417 | "google.com.et", 418 | "google.com.fj", 419 | "google.com.gh", 420 | "google.com.gi", 421 | "google.com.gt", 422 | "google.com.hk", 423 | "google.com.jm", 424 | "google.com.kh", 425 | "google.com.kw", 426 | "google.com.lb", 427 | "google.com.ly", 428 | "google.com.mm", 429 | "google.com.mt", 430 | "google.com.mx", 431 | "google.com.my", 432 | "google.com.na", 433 | "google.com.ng", 434 | "google.com.ni", 435 | "google.com.np", 436 | "google.com.om", 437 | "google.com.pa", 438 | "google.com.pe", 439 | "google.com.pg", 440 | "google.com.ph", 441 | "google.com.pk", 442 | "google.com.pr", 443 | "google.com.py", 444 | "google.com.qa", 445 | "google.com.sa", 446 | "google.com.sb", 447 | "google.com.sg", 448 | "google.com.sl", 449 | "google.com.sv", 450 | "google.com.tj", 451 | "google.com.tr", 452 | "google.com.tw", 453 | "google.com.ua", 454 | "google.com.uy", 455 | "google.com.vc", 456 | "google.com.vn", 457 | "google.cv", 458 | "google.cz", 459 | "google.de", 460 | "google.dj", 461 | "google.dk", 462 | "google.dm", 463 | "google.dz", 464 | "google.ee", 465 | "google.es", 466 | "google.fi", 467 | "google.fm", 468 | "google.fr", 469 | "google.ga", 470 | "google.ge", 471 | "google.gg", 472 | "google.gl", 473 | "google.gm", 474 | "google.gr", 475 | "google.gy", 476 | "google.hn", 477 | "google.hr", 478 | "google.ht", 479 | "google.hu", 480 | "google.ie", 481 | "google.im", 482 | "google.in", 483 | "google.iq", 484 | "google.is", 485 | "google.it", 486 | "google.je", 487 | "google.jo", 488 | "google.kg", 489 | "google.ki", 490 | "google.kz", 491 | "google.la", 492 | "google.li", 493 | "google.lk", 494 | "google.lt", 495 | "google.lu", 496 | "google.lv", 497 | "google.md", 498 | "google.me", 499 | "google.mg", 500 | "google.mk", 501 | "google.ml", 502 | "google.mn", 503 | "google.ms", 504 | "google.mu", 505 | "google.mv", 506 | "google.mw", 507 | "google.ne", 508 | "google.net", 509 | "google.nl", 510 | "google.no", 511 | "google.nr", 512 | "google.nu", 513 | "google.org", 514 | "google.pl", 515 | "google.pn", 516 | "google.ps", 517 | "google.pt", 518 | "google.ro", 519 | "google.rs", 520 | "google.ru", 521 | "google.rw", 522 | "google.sc", 523 | "google.se", 524 | "google.sh", 525 | "google.si", 526 | "google.sk", 527 | "google.sm", 528 | "google.sn", 529 | "google.so", 530 | "google.sr", 531 | "google.st", 532 | "google.td", 533 | "google.tg", 534 | "google.tk", 535 | "google.tl", 536 | "google.tm", 537 | "google.tn", 538 | "google.to", 539 | "google.tt", 540 | "google.vg", 541 | "google.vu", 542 | "google.ws", 543 | "googleapis.com", 544 | "googlecode.com", 545 | "googlehosted.com", 546 | "googleoptimize.com", 547 | "googleusercontent.com", 548 | "googleweblight.in", 549 | "googlezip.net", 550 | "gstatic.com", 551 | "gvt2.com", 552 | "gvt3.com", 553 | "withgoogle.com" 554 | ], 555 | "icon_domain": "google.com" 556 | }, 557 | { 558 | "service_id": "hbo", 559 | "service_name": "HBO", 560 | "categories": [ 561 | "VIDEO" 562 | ], 563 | "domains": [ 564 | "hbo.com", 565 | "hbogo.co.th", 566 | "hbogo.com", 567 | "hbogo.eu", 568 | "hbogoasia.com", 569 | "hbogoasia.id", 570 | "hbogoasia.ph", 571 | "hbomax.com", 572 | "hbomaxcdn.com" 573 | ], 574 | "icon_domain": "hbo.com" 575 | }, 576 | { 577 | "service_id": "hulu", 578 | "service_name": "Hulu", 579 | "categories": [ 580 | "VIDEO" 581 | ], 582 | "domains": [ 583 | "hulu.com", 584 | "huluad.com", 585 | "huluim.com", 586 | "hulumail.com", 587 | "huluqa.com", 588 | "hulustream.com" 589 | ], 590 | "icon_domain": "hulu.com" 591 | }, 592 | { 593 | "service_id": "instagram", 594 | "service_name": "Instagram", 595 | "categories": [ 596 | "SOCIAL_NETWORKS" 597 | ], 598 | "domains": [ 599 | "cdninstagram.com", 600 | "instagram.com", 601 | "ig.me" 602 | ], 603 | "icon_domain": "instagram.com" 604 | }, 605 | { 606 | "service_id": "jetbrains", 607 | "service_name": "JetBrains", 608 | "categories": [ 609 | "WORK" 610 | ], 611 | "domains": [ 612 | "grazie.ai", 613 | "intellij.net", 614 | "jb.gg", 615 | "jetbrains.ai", 616 | "jetbrains.com", 617 | "jetbrains.com.cn", 618 | "jetbrains.dev", 619 | "jetbrains.net", 620 | "jetbrains.org", 621 | "jetbrains.ru", 622 | "jetbrains.space", 623 | "kotl.in", 624 | "kotlinconf.com", 625 | "kotlinlang.org", 626 | "myjetbrains.com", 627 | "talkingkotlin.com" 628 | ], 629 | "icon_domain": "jetbrains.com" 630 | }, 631 | { 632 | "service_id": "kakao", 633 | "service_name": "Kakao Talk", 634 | "categories": [ 635 | "MESSENGERS" 636 | ], 637 | "domains": [ 638 | "daum.net", 639 | "kakao.com" 640 | ], 641 | "icon_domain": "kakao.com" 642 | }, 643 | { 644 | "service_id": "kik", 645 | "service_name": "Kik", 646 | "categories": [ 647 | "MESSENGERS" 648 | ], 649 | "domains": [ 650 | "kik.com" 651 | ], 652 | "icon_domain": "kik.com" 653 | }, 654 | { 655 | "service_id": "last", 656 | "service_name": "Last.fm", 657 | "categories": [ 658 | "MUSIC" 659 | ], 660 | "domains": [ 661 | "last.fm" 662 | ], 663 | "icon_domain": "last.fm" 664 | }, 665 | { 666 | "service_id": "linkedin", 667 | "service_name": "LinkedIn", 668 | "categories": [ 669 | "SOCIAL_NETWORKS" 670 | ], 671 | "domains": [ 672 | "bizographics.com", 673 | "licdn.com", 674 | "linkedin.at", 675 | "linkedin.com" 676 | ], 677 | "icon_domain": "linkedin.com" 678 | }, 679 | { 680 | "service_id": "messenger", 681 | "service_name": "Facebook Messenger", 682 | "categories": [ 683 | "MESSENGERS" 684 | ], 685 | "domains": [ 686 | "m.me", 687 | "messenger.com", 688 | "msngr.com" 689 | ], 690 | "icon_domain": "messenger.com" 691 | }, 692 | { 693 | "service_id": "netflix", 694 | "service_name": "Netflix", 695 | "categories": [ 696 | "VIDEO" 697 | ], 698 | "domains": [ 699 | "netflix.com", 700 | "netflix.net", 701 | "nflxext.com", 702 | "nflximg.com", 703 | "nflximg.net", 704 | "nflxso.net", 705 | "nflxvideo.net" 706 | ], 707 | "icon_domain": "netflix.com" 708 | }, 709 | { 710 | "service_id": "office", 711 | "service_name": "Microsoft Office", 712 | "categories": [ 713 | "WORK" 714 | ], 715 | "domains": [ 716 | "assets-yammer.com", 717 | "footprintdns.com", 718 | "microsoftonline-p.com", 719 | "microsoftonline.com", 720 | "msocdn.com", 721 | "msocsp.com", 722 | "o365filtering.com", 723 | "office.com", 724 | "office.de", 725 | "office.microsoft", 726 | "office.net", 727 | "office365.com", 728 | "office365.us", 729 | "live.com", 730 | "microsoft.com", 731 | "onmicrosoft.com", 732 | "svc.ms", 733 | "yammer.com" 734 | ], 735 | "icon_domain": "office.com" 736 | }, 737 | { 738 | "service_id": "openai", 739 | "service_name": "OpenAI", 740 | "categories": [ 741 | "SEARCH" 742 | ], 743 | "domains": [ 744 | "chatgpt.com", 745 | "oaistatic.com", 746 | "oaiusercontent.com", 747 | "openai.com" 748 | ], 749 | "icon_domain": "openai.com" 750 | }, 751 | { 752 | "service_id": "origin", 753 | "service_name": "Origin", 754 | "categories": [ 755 | "GAMES" 756 | ], 757 | "domains": [ 758 | "origin.com" 759 | ], 760 | "icon_domain": "origin.com" 761 | }, 762 | { 763 | "service_id": "pandora", 764 | "service_name": "Pandora", 765 | "categories": [ 766 | "MUSIC" 767 | ], 768 | "domains": [ 769 | "p-cdn.com", 770 | "p-cdn.us", 771 | "pandora.com" 772 | ], 773 | "icon_domain": "pandora.com" 774 | }, 775 | { 776 | "service_id": "pinterest", 777 | "service_name": "Pinterest", 778 | "categories": [ 779 | "SOCIAL_NETWORKS" 780 | ], 781 | "domains": [ 782 | "pinimg.com", 783 | "pinterest.ca", 784 | "pinterest.cl", 785 | "pinterest.co.kr", 786 | "pinterest.co.uk", 787 | "pinterest.com", 788 | "pinterest.com.mx", 789 | "pinterest.de", 790 | "pinterest.dk", 791 | "pinterest.es", 792 | "pinterest.fr", 793 | "pinterest.jp", 794 | "pinterest.nz", 795 | "pinterest.pt", 796 | "pinterest.ru", 797 | "pinterest.se" 798 | ], 799 | "icon_domain": "pinterest.com" 800 | }, 801 | { 802 | "service_id": "playstation", 803 | "service_name": "Playstation", 804 | "categories": [ 805 | "GAMES" 806 | ], 807 | "domains": [ 808 | "playstation.com", 809 | "playstation.net", 810 | "sonyentertainmentnetwork.com" 811 | ], 812 | "icon_domain": "playstation.com" 813 | }, 814 | { 815 | "service_id": "reddit", 816 | "service_name": "Reddit", 817 | "categories": [ 818 | "SOCIAL_NETWORKS" 819 | ], 820 | "domains": [ 821 | "redd.it", 822 | "reddit.com", 823 | "redditinc.com", 824 | "redditmail.com", 825 | "redditmedia.com", 826 | "redditstatic.com", 827 | "redditstatus.com" 828 | ], 829 | "icon_domain": "reddit.com" 830 | }, 831 | { 832 | "service_id": "rockstargames", 833 | "service_name": "Rockstar Games", 834 | "categories": [ 835 | "GAMES" 836 | ], 837 | "domains": [ 838 | "rockstargames.com" 839 | ], 840 | "icon_domain": "rockstargames.com" 841 | }, 842 | { 843 | "service_id": "signal", 844 | "service_name": "Signal", 845 | "categories": [ 846 | "MESSENGERS" 847 | ], 848 | "domains": [ 849 | "signal.org", 850 | "whispersystems.org" 851 | ], 852 | "icon_domain": "signal.org" 853 | }, 854 | { 855 | "service_id": "skype", 856 | "service_name": "Skype", 857 | "categories": [ 858 | "WORK" 859 | ], 860 | "domains": [ 861 | "lync.com", 862 | "sfbassets.com", 863 | "cloudapp.net", 864 | "skype.com", 865 | "skypeassets.com", 866 | "skypeforbusiness.com" 867 | ], 868 | "icon_domain": "skype.com" 869 | }, 870 | { 871 | "service_id": "slack", 872 | "service_name": "Slack", 873 | "categories": [ 874 | "WORK" 875 | ], 876 | "domains": [ 877 | "slack-core.com", 878 | "slack-edge.com", 879 | "slack-files.com", 880 | "slack-imgs.com", 881 | "slack-msgs.com", 882 | "slack-redir.net", 883 | "slack.com", 884 | "slackb.com" 885 | ], 886 | "icon_domain": "slack.com" 887 | }, 888 | { 889 | "service_id": "snapchat", 890 | "service_name": "Snapchat", 891 | "categories": [ 892 | "SOCIAL_NETWORKS" 893 | ], 894 | "domains": [ 895 | "addlive.io", 896 | "feelinsonice.com", 897 | "sc-cdn.net", 898 | "sc-corp.net", 899 | "sc-gw.com", 900 | "sc-jpl.com", 901 | "sc-prod.net", 902 | "sc-static.net", 903 | "snap-dev.net", 904 | "snapads.com", 905 | "snapchat.com", 906 | "snapkit.com" 907 | ], 908 | "icon_domain": "snapchat.com" 909 | }, 910 | { 911 | "service_id": "soundcloud", 912 | "service_name": "SoundCloud", 913 | "categories": [ 914 | "MUSIC" 915 | ], 916 | "domains": [ 917 | "sndcdn.com", 918 | "soundcloud.com" 919 | ], 920 | "icon_domain": "soundcloud.com" 921 | }, 922 | { 923 | "service_id": "spotify", 924 | "service_name": "Spotify", 925 | "categories": [ 926 | "MUSIC" 927 | ], 928 | "domains": [ 929 | "pscdn.co", 930 | "scdn.co", 931 | "spotify.com", 932 | "spotifycdn.com", 933 | "spotifycdn.net", 934 | "spotilocal.com" 935 | ], 936 | "icon_domain": "spotify.com" 937 | }, 938 | { 939 | "service_id": "steampowered", 940 | "service_name": "Steam", 941 | "categories": [ 942 | "GAMES" 943 | ], 944 | "domains": [ 945 | "steamcommunity.com", 946 | "steamcontent.com", 947 | "steampowered.com", 948 | "steamstatic.com", 949 | "steamusercontent.com", 950 | "valvesoftware.com" 951 | ], 952 | "icon_domain": "steampowered.com" 953 | }, 954 | { 955 | "service_id": "telegram", 956 | "service_name": "Telegram", 957 | "categories": [ 958 | "MESSENGERS" 959 | ], 960 | "domains": [ 961 | "t.me", 962 | "telegram.org", 963 | "telesco.pe" 964 | ], 965 | "icon_domain": "telegram.org" 966 | }, 967 | { 968 | "service_id": "tiktok", 969 | "service_name": "Tiktok", 970 | "categories": [ 971 | "SOCIAL_NETWORKS" 972 | ], 973 | "domains": [ 974 | "bytecdn.cn", 975 | "bytedanceapi.com", 976 | "byted.org", 977 | "byteoversea.com", 978 | "byteoversea.net", 979 | "ibytedtos.com", 980 | "ibyteimg.com", 981 | "isnssdk.com", 982 | "muscdn.com", 983 | "musemuse.cn", 984 | "musical.ly", 985 | "sgsnssdk.com", 986 | "tiktokcdn-eu.com", 987 | "tiktokcdn-in.com", 988 | "tiktokcdn.com", 989 | "tiktokv.com", 990 | "tiktokv.eu", 991 | "tiktok.com", 992 | "ttoversea.net", 993 | "worldfcdn.com", 994 | "wsdvs.com" 995 | ], 996 | "icon_domain": "tiktok.com" 997 | }, 998 | { 999 | "service_id": "tinder", 1000 | "service_name": "Tinder", 1001 | "categories": [ 1002 | "SOCIAL_NETWORKS" 1003 | ], 1004 | "domains": [ 1005 | "gotinder.com", 1006 | "tinder.com", 1007 | "tindersparks.com" 1008 | ], 1009 | "icon_domain": "tinder.com" 1010 | }, 1011 | { 1012 | "service_id": "tumblr", 1013 | "service_name": "Tumblr", 1014 | "categories": [ 1015 | "SOCIAL_NETWORKS" 1016 | ], 1017 | "domains": [ 1018 | "tumblr.com" 1019 | ], 1020 | "icon_domain": "tumblr.com" 1021 | }, 1022 | { 1023 | "service_id": "twitch", 1024 | "service_name": "Twitch", 1025 | "categories": [ 1026 | "GAMES" 1027 | ], 1028 | "domains": [ 1029 | "ext-twitch.tv", 1030 | "jtvnw.net", 1031 | "live-video.net", 1032 | "ttvnw.net", 1033 | "twitch.tv", 1034 | "twitchcdn.net", 1035 | "twitchsvc.net" 1036 | ], 1037 | "icon_domain": "twitch.com" 1038 | }, 1039 | { 1040 | "service_id": "twitter", 1041 | "service_name": "Twitter", 1042 | "categories": [ 1043 | "SOCIAL_NETWORKS" 1044 | ], 1045 | "domains": [ 1046 | "ads-twitter.com", 1047 | "t.co", 1048 | "twimg.com", 1049 | "twitter.com", 1050 | "twttr.com", 1051 | "x.com" 1052 | ], 1053 | "icon_domain": "twitter.com" 1054 | }, 1055 | { 1056 | "service_id": "ubisoft", 1057 | "service_name": "Ubisoft", 1058 | "categories": [ 1059 | "GAMES" 1060 | ], 1061 | "domains": [ 1062 | "ubi.com", 1063 | "ubisoft.com", 1064 | "ubisoft.org", 1065 | "ubisoftconnect.com" 1066 | ], 1067 | "icon_domain": "ubisoft.com" 1068 | }, 1069 | { 1070 | "service_id": "vimeo", 1071 | "service_name": "Vimeo", 1072 | "categories": [ 1073 | "VIDEO" 1074 | ], 1075 | "domains": [ 1076 | "vimeo.com", 1077 | "vimeocdn.com" 1078 | ], 1079 | "icon_domain": "vimeo.com" 1080 | }, 1081 | { 1082 | "service_id": "vk", 1083 | "service_name": "VK", 1084 | "categories": [ 1085 | "SOCIAL_NETWORKS" 1086 | ], 1087 | "domains": [ 1088 | "mycdn.me", 1089 | "okcdn.ru", 1090 | "userapi.com", 1091 | "vk-portal.net", 1092 | "vk.com", 1093 | "vk.ru", 1094 | "vkuseraudio.net", 1095 | "vkuservideo.net" 1096 | ], 1097 | "icon_domain": "vk.com" 1098 | }, 1099 | { 1100 | "service_id": "wechat", 1101 | "service_name": "WeChat", 1102 | "categories": [ 1103 | "MESSENGERS" 1104 | ], 1105 | "domains": [ 1106 | "wechat.com" 1107 | ], 1108 | "icon_domain": "wechat.com" 1109 | }, 1110 | { 1111 | "service_id": "whatsapp", 1112 | "service_name": "WhatsApp", 1113 | "categories": [ 1114 | "MESSENGERS" 1115 | ], 1116 | "domains": [ 1117 | "whatsapp.com", 1118 | "whatsapp.net" 1119 | ], 1120 | "icon_domain": "whatsapp.com" 1121 | }, 1122 | { 1123 | "service_id": "xbox", 1124 | "service_name": "Xbox", 1125 | "categories": [ 1126 | "GAMES" 1127 | ], 1128 | "domains": [ 1129 | "gamepass.com", 1130 | "xbox.com", 1131 | "xboxab.com", 1132 | "xboxab.net", 1133 | "xboxlive.com", 1134 | "xboxservices.com" 1135 | ], 1136 | "icon_domain": "xbox.com" 1137 | }, 1138 | { 1139 | "service_id": "yahoo", 1140 | "service_name": "Yahoo", 1141 | "categories": [ 1142 | "SEARCH" 1143 | ], 1144 | "domains": [ 1145 | "yahoo-inc.com", 1146 | "yahoo-net.jp", 1147 | "yahoo.cm", 1148 | "yahoo.cn", 1149 | "yahoo.co.id", 1150 | "yahoo.co.jp", 1151 | "yahoo.co.kr", 1152 | "yahoo.co.uk", 1153 | "yahoo.com", 1154 | "yahoo.com.cn", 1155 | "yahoo.com.hk", 1156 | "yahoo.com.sg", 1157 | "yahoo.com.tw", 1158 | "yahoo.com.vn", 1159 | "yahoo.fr", 1160 | "yahoo.net", 1161 | "yahoo.tw", 1162 | "yahooapis.com", 1163 | "yahooapis.jp", 1164 | "yahoodns.net", 1165 | "yahoofinance.com", 1166 | "yahoomail.jp", 1167 | "yahoosmallbusiness.com", 1168 | "yimg.com" 1169 | ], 1170 | "icon_domain": "yahoo.com" 1171 | }, 1172 | { 1173 | "service_id": "yandex", 1174 | "service_name": "Yandex", 1175 | "categories": [ 1176 | "SEARCH" 1177 | ], 1178 | "domains": [ 1179 | "yandex.com", 1180 | "yandex.com.tr", 1181 | "yandex.kz", 1182 | "yandex.net", 1183 | "yandex.ru", 1184 | "yandex.ua", 1185 | "yastatic.net", 1186 | "yandex.by", 1187 | "ya.ru" 1188 | ], 1189 | "icon_domain": "yandex.com" 1190 | }, 1191 | { 1192 | "service_id": "youtube", 1193 | "service_name": "YouTube", 1194 | "categories": [ 1195 | "VIDEO" 1196 | ], 1197 | "domains": [ 1198 | "gvt1.com", 1199 | "youtu.be", 1200 | "youtube-nocookie.com", 1201 | "youtube.com", 1202 | "youtubeeducation.com", 1203 | "youtubei.googleapis.com", 1204 | "ytimg.com", 1205 | "googlevideo.com", 1206 | "ggpht.com" 1207 | ], 1208 | "icon_domain": "youtube.com" 1209 | }, 1210 | { 1211 | "service_id": "zoom", 1212 | "service_name": "Zoom", 1213 | "categories": [ 1214 | "WORK" 1215 | ], 1216 | "domains": [ 1217 | "zoom.us", 1218 | "zoomgov.com" 1219 | ], 1220 | "icon_domain": "zoom.com" 1221 | } 1222 | ] 1223 | --------------------------------------------------------------------------------