# Chrome Web Store — Zapi reference > Chrome extensions and themes — rating, weekly users, the developer's contact details, and the extension's real manifest permissions, which the store page itself never shows. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/application/chrome-web-store - Endpoint catalog: https://zpi.web.id/category/application - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Chrome Web Store **Category:** application · **Slug:** `chrome-web-store` **Detail page:** https://zpi.web.id/api/application/chrome-web-store Chrome extensions and themes — rating, weekly users, the developer's contact details, and the extension's real manifest permissions, which the store page itself never shows. ### Extension Detail One extension's full store record — rating, weekly users, developer contact, version, size, supported languages, screenshots, and the manifest permissions it actually requests. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/application:chrome-web-store/extension` - **Cache TTL:** 3600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `id` | string | query | yes | Chrome extension id | | `lang` | string | query | no | Language for names and descriptions. Default en. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/application:chrome-web-store/extension?id=cjpalhdlnbpafiamejdnhcphjbkeiagm&lang=en" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/application:chrome-web-store/extension?id=cjpalhdlnbpafiamejdnhcphjbkeiagm&lang=en", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/application:chrome-web-store/extension?id=cjpalhdlnbpafiamejdnhcphjbkeiagm&lang=en", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "id": "cjpalhdlnbpafiamejdnhcphjbkeiagm", "url": "https://chromewebstore.google.com/detail/cjpalhdlnbpafiamejdnhcphjbkeiagm", "free": true, "icon": "https://lh3.googleusercontent.com/rrgyVBVte7CfjjeTU-rCHDKba7vtq-yn3o8-10p5b6QOj_2VCDAO3VdggV5fUnugbG2eDGPPjoJ9rsiU_tUZBExgLGc", "name": "uBlock Origin", "size": "4.44MiB", "price": 0, "users": 11000000, "banner": "https://lh3.googleusercontent.com/9dqMGXXoBjVJNkwwCOnEHMK5NrEMsfJ7pnmU7Gu2HUMSwGotFo1FalB6J58y_s05Lemqx-VQoawTYhHqXJYSwUkZcw", "rating": 4.697842335354675, "source": "chrome-web-store", "summary": "Finally, an efficient blocker. Easy on CPU and memory.", "updated": 1785952189, "version": "1.73.0", "category": "privacy", "developer": { "name": "Raymond Hill (gorhill)", "email": "ubo@raymondhill.net" }, "languages": [ "Deutsch", "English", "English (United Kingdom)", "Filipino", "Indonesia", "Kiswahili", "Melayu", "Nederlands" ], "description": "IMPORTANT: uBlock Origin is completely unrelated to the site \"ublock.org\".\n\nuBlock Origin is not an \"ad blocker\", it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.\n\n***\n\nOut of the box, these lists of filters are loaded and enforced:\n\n- uBlock Origin filter lists\n- EasyList (ads)\n- EasyPrivacy (tracking)\n- Peter Lowe’s Ad server list (ads and tracking)\n- Online Malicious URL Blocklist\n\nMore lists are available for you to select if you wish:\n\n- Annoyances (cookie warnings, overlays, etc.)\n- hosts-based lists\n- And many others\n\nAdditionally, you can point-and-click to block JavaScript locally or globally, create your own global or local rules to override entries from filter lists, and many more advanced features.\n\n***\n\nFree.\nOpen source with public license (GPLv3)\nFor users by users.\n\nIf ever you really do want to contribute something, think about the people working hard to maintain the filter lists you are using, which were made available to use by all for free.\n\n***\n\nDocumentation:\nhttps://github.com/gorhill/uBlock#ublock-origin\n\nProject change log:\nhttps://github.com/gorhill/uBlock/releases\n\nContributors @ Github:\nhttps://github.com/gorhill/uBlock/graphs/contributors\n\nContributors @ Crowdin:\nhttps://crowdin.net/project/ublock", "permissions": [ "alarms", "contextMenus", "privacy", "storage", "tabs", "unlimitedStorage", "webNavigation", "webRequest" ], "ratingCount": 35455, "screenshots": [ "https://lh3.googleusercontent.com/fkBLPrlZP_TXDyLFJLn03MvXlzHPnaa3xRgiIgCSR_jAvDRxtebwMR6U7_WniECDjYMVVkYGEnDRs_D4BDyemKRxvA", "https://lh3.googleusercontent.com/SepkVKV4nqje7vweFTJGQcPGp3I5GkcakGkomOaZMfElrq73-KZjzUwotSeELVFA0X8TvRjz-2b-ZIVlsBOqBXbIsg", "https://lh3.googleusercontent.com/xtyNu14tuXEuZZk_P28_dnGYh1kJnjehB4G8Vy6MlMzE6XmM6nnTTFgsMdKVPLEaVQmVxfcepcrrcj1cqAdqwGONrQ", "https://lh3.googleusercontent.com/0MKfd88QQMceYDLpEcoUzC-Vvu9ztGnj-siwa3VaxDM8cPvqT3nm-NS2zkaiCstWxeu5rsTPAeY6kibYGYhW_5JWYQ" ], "categoryPath": "make_chrome_yours/privacy", "manifestVersion": 2 } ``` --- ### Extension Search Search the extension store. Each hit carries the same summary fields a detail page does. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/application:chrome-web-store/search` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | yes | Search keyword | | `lang` | string | query | no | Language for names and descriptions. Default en. | | `count` | number | query | no | Maximum extensions to return. Default 20. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/application:chrome-web-store/search?query=adblock&lang=en&count=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/application:chrome-web-store/search?query=adblock&lang=en&count=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/application:chrome-web-store/search?query=adblock&lang=en&count=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 10, "items": [ { "id": "gighmmpiobklfepjocnamgkkbiglidom", "url": "https://chromewebstore.google.com/detail/gighmmpiobklfepjocnamgkkbiglidom", "free": true, "icon": "https://lh3.googleusercontent.com/mgNKV-3VMXD556WVUiWSbcukQQN-il4Zlqq03efTjG2B5j9YP7Fxr3idTQ_G0JFD7E6o4TMwvTQTleDn_8UdFLf5VQ", "name": "AdBlock — block ads across the web", "price": 0, "users": 59000000, "banner": "https://lh3.googleusercontent.com/3WssruYpy1oFSsMEQol5IZFGPYI7uYgwfekPl85NqKaUxu2bJsveNdO9oII2fYeBgznWbL-X5AtBidNa9ddFowwd7pM", "rating": 4.473698170532168, "source": "chrome-web-store", "summary": "Block ads on YouTube and your favorite sites for free", "category": "workflow", "developer": { "website": "http://getadblock.com/" }, "ratingCount": 290303, "categoryPath": "productivity/workflow" }, { "id": "cfhdojbkjhnklbpkdaibdccddilifddb", "url": "https://chromewebstore.google.com/detail/cfhdojbkjhnklbpkdaibdccddilifddb", "free": true, "icon": "https://lh3.googleusercontent.com/nnMASpwJY4U5ukhKl4PfIdaOpuKXNrVvfIc9n8-NJOJIY7m3RLgsazN6ATmDkXyaMll8zADOXuBR574MwC7T71kJcQ", "name": "Adblock Plus - free ad blocker", "price": 0, "users": 37000000, "banner": "https://lh3.googleusercontent.com/5KhDb_CYPuUIBdZgLu4AOFIRjerLSQdC9Jrbv5ReXPQudO7_RlcNHZZJDqNrWQpoN2-xMg20j2uASzVdBoI1sq0kECo", "rating": 4.392556071460863, "source": "chrome-web-store", "summary": "Remove ads on YouTube and everywhere else you browse.", "category": "workflow", "developer": { "website": "http://adblockplus.org/" }, "ratingCount": 188019, "categoryPath": "productivity/workflow" }, { "id": "cmedhionkhpnakcndndgjdbohmhepckk", "url": "https://chromewebstore.google.com/detail/cmedhionkhpnakcndndgjdbohmhepckk", "free": true, "icon": "https://lh3.googleusercontent.com/bMu6IzWn8zG4yCpDcUrrTHA8bh5pVuAW706__3d2e6Lw_XwpqY3qxn_BfqUS3aaCTisvqFQIN1C9ac4Dm6s0Fz-vOg", "name": "Adblock for Youtube™", "price": 0, "users": 10000000, "banner": "https://lh3.googleusercontent.com/s461fSyCaZWFkKsCvs8jsZV-SW_szvxsJwKFN8CgVpNXNE4DBM_ZpGa7glQrVEDemSTkTQMx3KqA_DBEtkJHR-DXSA", "rating": 4.438450735340529, "source": "chrome-web-store", "summary": "Removes ads from Youtube™.", "category": "workflow", "ratingCount": 380232, "categoryPath": "productivity/workflow" }, { "id": "jpkfgepcmmchgfbjblnodjhldacghenp", "url": "https://chromewebstore.google.com/detail/jpkfgepcmmchgfbjblnodjhldacghenp", "free": true, "icon": "https://lh3.googleusercontent.com/TQpkNRK3eYDNsgCRzekAFPwJwOK8Y5YLLICXyj7tgSitMNwAiUdEe7ehoR3qpYK_q6t5-yfu_ChZMl3J25ZBkMbAxQ", "name": "Pie Adblock - A Powerful Free Ad Blocker", "price": 0, "users": 2000000, "banner": "https://lh3.googleusercontent.com/35TZWUJtuFhVrnPJV4wt2sn2Riladd6QJxZkZc-NcZbxwRVJFyMKmxPNEKoUaQjiZLCcbh0gj8Mbv7ysRB2i3bhqJCQ", "rating": 4.896887223482234, "source": "chrome-web-store", "summary": "Pie Adblock blocks ads & pop-ups, plus YouTube & Twitch video ads. You can customize your ad experience with Pie!", "category": "tools", "developer": { "website": "pie.org" }, "ratingCount": 30423, "categoryPath": "productivity/tools" }, { "id": "gekdekpbfehejjiecgonmgmepbdnaggp", "url": "https://chromewebstore.google.com/detail/gekdekpbfehejjiecgonmgmepbdnaggp", "free": true, "icon": "https://lh3.googleusercontent.com/-uGKiLap1UIpJrrWBt1ZIaA0GAnV-_WT6UTIww7pV4aBFRCLuqvm0RUcyV7mwF2GUBmUddRsnrKjcHuyBBlqyTLX", "name": "Total Adblock - Ad Blocker", "price": 0, "users": 800000, "banner": "https://lh3.googleusercontent.com/v5KSjup2FEbMUyxvAdJYBEoibntJ1ukNMuYUOW7u4eAt5apLJCgj6zz8MLFBbuyB6ERA0WUnIBxdMC_g_v2cGjS6Kg", "rating": 3.312239221140473, "source": "chrome-web-store", "summary": "Instantly block annoying ads, pop-ups & intrusive trackers with Total Adblock.", "category": "workflow", "developer": { "website": "totaladblocker.com" }, "ratingCount": 2876, "categoryPath": "productivity/workflow" }, { "id": "dgjbaljgolmlcmmklmmeafecikidmjpi", "url": "https://chromewebstore.google.com/detail/dgjbaljgolmlcmmklmmeafecikidmjpi", "free": true, "icon": "https://lh3.googleusercontent.com/Hj3MAmMuFzuzVmt3IEmvDOk_ooYtzlholbA4J80lDR4AI3Sw7fIBxRDM0v9t9TFvWzTD_hH-IyMfT12g4bpELWLh5g", "name": "Adblock Ad Blocker Pro", "price": 0, "users": 300000, "banner": "https://lh3.googleusercontent.com/kPwZ-gHsqrLPnjg4FbjqCaNIV8J8SZ9qc0z3WA3jcystpYMpyuB69ib6antR56g5ttxrF-Hvp1PosErdVh9qUDfKsek", "rating": 4.326887661141805, "source": "chrome-web-store", "summary": "Block ads and browse faster with Adblock, the best ad blocker for Chrome! Enjoy a cleaner, safer, and faster web experience.", "category": "privacy", "developer": { "website": "https://adblox.org/" }, "ratingCount": 1086, "categoryPath": "make_chrome_yours/privacy" }, { "id": "ggdpplfehdighdpleoegjefnpefgpgfh", "url": "https://chromewebstore.google.com/detail/ggdpplfehdighdpleoegjefnpefgpgfh", "free": true, "icon": "https://lh3.googleusercontent.com/y5DIrMS1i9yjQxbhI6yYT5J9zPQTDthC1xYHYWNOXeRUZ5VSshIkI2EegD8gwolU_qKsjlKF2bA6k6cn9SU5AiE-6wU", "name": "AdBlock Max - ad blocker", "price": 0, "users": 200000, "rating": 4.817720294935332, "source": "chrome-web-store", "summary": "A permission-less content blocker. Blocks ads, trackers, miners, and more immediately upon installation.", "category": "workflow", "ratingCount": 8273, "categoryPath": "productivity/workflow" }, { "id": "lgblnfidahcdcjddiepkckcfdhpknnjh", "url": "https://chromewebstore.google.com/detail/lgblnfidahcdcjddiepkckcfdhpknnjh", "free": true, "icon": "https://lh3.googleusercontent.com/N9pPZRS5GT8JKtGT93q8pmXcynJpR2S0Jf48gndHHNRTBr8IMseByrjk4X6VUetjiJFzaCCIrBx2mzd5v3EE7OGINw", "name": "Ad Blocker: Stands AdBlocker", "price": 0, "users": 3000000, "banner": "https://lh3.googleusercontent.com/DAv1RNGcLhvruwRso00i0rfEmebZ-rjRBKu_L4Nx64spPWT7hgDFUd8Qb9g_c2PBorsETYmfIrxV72PxGeWMRhoNjg", "rating": 4.792722629259936, "source": "chrome-web-store", "summary": "Stands AdBlocker – it's a free ad blocker for YouTube, Twitch, Pop-Ups, Video Ads, and websites. Block ads everywhere with Stands!", "category": "tools", "developer": { "website": "standsapp.org" }, "ratingCount": 158189, "categoryPath": "productivity/tools" } ], "query": "adblock", "source": "chrome-web-store" } ``` --- ### Category Listing The extensions listed under one store category. Any extension's `categoryPath` is a valid input. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/application:chrome-web-store/category` - **Cache TTL:** 1800s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `category` | string | query | yes | Store category, e.g. productivity/workflow or make_chrome_yours/privacy. The `categoryPath` field of any extension is a valid value. | | `lang` | string | query | no | Language for names and descriptions. Default en. | | `count` | number | query | no | Maximum extensions to return. Default 30. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/application:chrome-web-store/category?category=productivity%2Fworkflow&lang=en&count=30" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/application:chrome-web-store/category?category=productivity%2Fworkflow&lang=en&count=30", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/application:chrome-web-store/category?category=productivity%2Fworkflow&lang=en&count=30", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 10, "items": [ { "id": "ddkjiahejlhfcafbddmgiahcphecmpfh", "url": "https://chromewebstore.google.com/detail/ddkjiahejlhfcafbddmgiahcphecmpfh", "free": true, "icon": "https://lh3.googleusercontent.com/lsanoOfx5N_t-7gh5Qg9FGIirVEjdCqalZXyLZYRd5d7Fydm83FQhu4Oq0JmlRyMtyF_LfwuQQZyKRTHs6emnFirsA", "name": "uBlock Origin Lite", "price": 0, "users": 17000000, "banner": "https://lh3.googleusercontent.com/P_dAn8EsB2P_WgcPYD0LpyIWqI9i5WCAGEmrJzFdoIkdoozT6Mg46_EK-VXtOW67FArKH8BK4QnhfbxU8Cz5mF6umg", "rating": 4.497949619214997, "source": "chrome-web-store", "summary": "An efficient content blocker. Blocks ads, trackers, miners, and more immediately upon installation.", "category": "privacy", "ratingCount": 3414, "categoryPath": "make_chrome_yours/privacy" }, { "id": "bgnkhhnnamicmpeenaelnjfhikgbkllg", "url": "https://chromewebstore.google.com/detail/bgnkhhnnamicmpeenaelnjfhikgbkllg", "free": true, "icon": "https://lh3.googleusercontent.com/mOms1zOrTTa6cSy0IlGTsl5EUUff7E9C6O3h-g1ScmaBK6H3WdKXnXQI8oIRTAuf5Uh7Zc3IEFlgfusDIo08khi9", "name": "AdGuard AdBlocker", "price": 0, "users": 16000000, "banner": "https://lh3.googleusercontent.com/f5md0B9HFfSR5fT2AN2spDXyTghPXkqa5pUKDpYSmaNgS4t0a6xwxIm5YO6-wItVLfoMXz5Hb4lOV-qLLfCXCNTd", "rating": 4.657668837046337, "source": "chrome-web-store", "summary": "Unmatched adblock extension against advertising and pop-ups. Blocks ads on Facebook, YouTube and all other websites.", "category": "privacy", "developer": { "website": "adguard.com" }, "ratingCount": 68498, "categoryPath": "make_chrome_yours/privacy" }, { "id": "fjoaledfpmneenckfbpdfhkmimnjocfa", "url": "https://chromewebstore.google.com/detail/fjoaledfpmneenckfbpdfhkmimnjocfa", "free": true, "icon": "https://lh3.googleusercontent.com/fxIPBOBd5X56jsxoxNMcb6BtVFb0KvUzw-zu3x-fBFR8mQWtSWSpreUie-ekpfmm9E_KtoKUNkRsDyUXKxoutxx2Ig", "name": "VPN for Chrome: NordVPN proxy protection", "price": 0, "users": 13000000, "banner": "https://lh3.googleusercontent.com/YxQrpEB-BlxCnP2MYKkqRtznMqFel1_Nt2jqZTmCDzBmjryumthYXWxW5W0yFb4f34ty635i4xeDxMo8hlBGZaOHsw", "rating": 4.246191482263983, "source": "chrome-web-store", "summary": "Connect to the fastest VPN out there — NordVPN. Hide your IP, block ads, and be safer online with our VPN proxy extension for Chrome", "category": "privacy", "developer": { "website": "https://nordvpn.com/" }, "ratingCount": 8993, "categoryPath": "make_chrome_yours/privacy" }, { "id": "ihcjicgdanjaechkgeegckofjjedodee", "url": "https://chromewebstore.google.com/detail/ihcjicgdanjaechkgeegckofjjedodee", "free": true, "icon": "https://lh3.googleusercontent.com/NxzQdxBr9HochFkFKXfvCMJmTtRUQxwquphUfRvb6XzAziVpMr7NIzxChmcm9fNgrz2v_2_tRiJFA2846Gqpmq--Xw", "name": "Malwarebytes Browser Guard", "price": 0, "users": 11000000, "banner": "https://lh3.googleusercontent.com/N7pQtDAN-sS7xFPn_p-RqeXKHiWvgsYdBjRwv4LI5J_yrXTcV0FnTXJu48Z6HyazlKhBcNIrVQ-JVCLuC00QI049eNk", "rating": 3.864864864864865, "source": "chrome-web-store", "summary": "Block malware, scams, phishing and trackers for safer, cleaner, and ad-free browsing.", "category": "privacy", "developer": { "website": "https://www.malwarebytes.com/" }, "ratingCount": 1517, "categoryPath": "make_chrome_yours/privacy" }, { "id": "llbcnfanfmjhpedaedhbcnpgeepdnnok", "url": "https://chromewebstore.google.com/detail/llbcnfanfmjhpedaedhbcnpgeepdnnok", "free": true, "icon": "https://lh3.googleusercontent.com/zWmT0Nu9Uev_drS8k3yQAUWDqijwsItsfmTcR2cZU_LCgYWPy5zhv3ZMfb-Ncq62vNDjB6l6qDj3dYMriK33Sh1z", "name": "Online Security", "price": 0, "users": 10000000, "banner": "https://lh3.googleusercontent.com/nvt708eXMF5RQnL-jJlgYPGSIeHPS4ewUv_wZt9jJir89z_4B-Fm4EZA9wfC-uKnTt15BADUz28FMCJFkTPsrc96PA", "rating": 3.6077441077441077, "source": "chrome-web-store", "summary": "Powering your web experience with a reliable, endpoint protection layer.", "category": "privacy", "developer": { "website": "reasonlabs.com" }, "ratingCount": 594, "categoryPath": "make_chrome_yours/privacy" }, { "id": "eiaeiblijfjekdanodkjadfinkhbfgcd", "url": "https://chromewebstore.google.com/detail/eiaeiblijfjekdanodkjadfinkhbfgcd", "free": true, "icon": "https://lh3.googleusercontent.com/mjccUyFN5-Z1QCZXHv6Eeo6KlnDMUG9eBswYPk7iCYIAzml8hQ3mxi0RJq9E5aJD_Ig6kcyQwZI2cYGWy9aYCJcc3ME", "name": "NordPass® Password Manager & Digital Vault", "price": 0, "users": 8000000, "banner": "https://lh3.googleusercontent.com/DxQzHXhtCRfd4k7LRDNIOWjct59T1bcb0ATK1Pt6KE5XbBjwGGBKCTvSRl9S5P_nsEKYuvS6uQeJoaC6teazuBSC", "rating": 4.573267597918378, "source": "chrome-web-store", "summary": "NordPass is your freedom from password stress. Generate and securely store strong passwords and autofill them with a single click.", "category": "privacy", "ratingCount": 7302, "categoryPath": "make_chrome_yours/privacy" }, { "id": "nngceckbapebfimnlniiiahkandclblb", "url": "https://chromewebstore.google.com/detail/nngceckbapebfimnlniiiahkandclblb", "free": true, "icon": "https://lh3.googleusercontent.com/J_l8abQyJgx7POjRoDfGaFYWFnYQNpRSy4kH5IlbwSdM-l_gZf2rJlk2NLSQTY8g-U2vrclpb0EZApHyOe6sjzbKcUc", "name": "Bitwarden Password Manager", "price": 0, "users": 7000000, "banner": "https://lh3.googleusercontent.com/Ca7mjerq0m5ziMg1l1Bjb69pOOzQfCzE3wGkgD06_Z6luGzboq5wJhO0cGoO8_qKWlJ80FrtNgO6uO5zqY4vINEUcoU", "rating": 4.275056518462698, "source": "chrome-web-store", "summary": "At home, at work, or on the go, Bitwarden easily secures all your passwords, passkeys, and sensitive information", "category": "privacy", "developer": { "website": "https://bitwarden.com/" }, "ratingCount": 7962, "categoryPath": "make_chrome_yours/privacy" }, { "id": "eppiocemhmnlbhjplcgkofciiegomcon", "url": "https://chromewebstore.google.com/detail/eppiocemhmnlbhjplcgkofciiegomcon", "free": true, "icon": "https://lh3.googleusercontent.com/A_Tsno72NtWoHHChuzjOTqsPOJUDLoz_EJ3qvavrE7NcRe9dkSVvRGsOV4q2VHntf5R61t2EFeTi5l1MSHRzC3p_rw", "name": "Urban VPN Proxy", "price": 0, "users": 6000000, "banner": "https://lh3.googleusercontent.com/aTUqvL8H6grDpbhneHu8jHlYMEROhy6HIGyYAuqH_AX37XNysoE3si-i3SAcRqo3KoRfU_N8ObCxrUdcCenHW1dliA", "rating": 4.653986733450656, "source": "chrome-web-store", "summary": "Get the best secured Free VPN access to any website, and unblock content with Urban VPN", "category": "privacy", "ratingCount": 66483, "categoryPath": "make_chrome_yours/privacy" } ], "source": "chrome-web-store", "category": "make_chrome_yours/privacy" } ``` --- _Generated: 2026-08-18T06:07:33.355Z_