Tabinet — Privacy Policy
Last updated: 5 September 2026
Tabinet does not collect, transmit, or sell any user data. There is no account, no analytics, no tracking, and no server operated by the developer. Everything the extension saves stays in your own browser.
1. What Tabinet stores
Tabinet saves groups of tabs so you can restore them later. To do that it stores, on your device:
- each saved group's name and color;
- for every tab in a group, its title and URL;
- your settings (sync on/off, keep-live, pre-load, the two auto-save switches) and which saved group is currently open in a window.
This is written with the Chrome extension storage API — chrome.storage.local,
which never leaves your computer.
If you turn on “Sync across devices”
Tabinet moves that same data to chrome.storage.sync, which Chrome syncs through
your own Google account so your groups appear on the other Chrome profiles you are
signed into. That transfer is handled by Chrome, is governed by Google's privacy policy, and the
developer of Tabinet has no access to it. The option is off by default and you can turn it off
again at any time.
2. What Tabinet sends over the network
Tabinet makes exactly one kind of network request, and never to the developer:
Pre-warming. When you open a saved workspace, its tabs are created on a local placeholder page instead of loading all at once. The extension's background worker then requests the URLs of those tabs — the pages you saved yourself — with your existing cookies, so that DNS/TLS is resolved, any login redirect is followed, and the page is in Chrome's cache before you click it. The result is that clicking a tab opens an already-signed-in page instead of a cold load.
- The response is never rendered, parsed, or inspected. An HTML body is read only so the response lands in Chrome's HTTP cache; anything else is aborted after the headers.
- No page content is stored or sent anywhere.
- Requests go only to sites you saved into a workspace. No third party and no developer server is involved — there is none.
- The work is capped (a few pages at a time, with a per-page timeout and a per-URL cooldown) and is cancelled as soon as you switch away.
Tabinet contains no analytics, no telemetry, no advertising SDK, and no remote code: all of its JavaScript ships inside the extension package.
3. Permissions and why they are needed
tabs |
Read the title, URL, and order of the tabs in your window so a workspace can be saved, and create/activate/move/close tabs when one is restored or edited. |
|---|---|
tabGroups |
Bundle a restored workspace into a native Chrome tab group with its name and color, and read an existing group when you choose “Save group”. |
storage |
Persist your saved groups and settings (section 1). |
downloads |
Write the JSON backup file when you click “Save”. The file is built locally and Chrome's own save dialog asks where to put it. |
sidePanel |
Show the docked sidebar, the extension's main interface. |
| host access ( http/https) |
Required for the pre-warming requests in section 2. A workspace can contain any site you choose, so the permission cannot be narrowed to a fixed list of hosts. |
4. Sharing
Nothing is shared, because nothing is collected. Tabinet does not sell or transfer data to third parties, does not use data for advertising, and does not use it for creditworthiness or lending purposes.
5. Your control over the data
- Delete a single tab, a group, or all groups from the side panel or the editor.
- Export everything to a JSON file (“Save”) and import it back (“Load”) — that file is yours and is written only where you choose.
- Turning “Sync across devices” off moves the data back to this device.
- Uninstalling Tabinet removes its extension storage, including every saved group. Exported JSON files are ordinary files and are not touched.
6. Children and sensitive data
Tabinet is a general-purpose tab manager, is not directed at children, and does not request health, financial, authentication, location, or personal-identity data.
7. Changes
If this policy changes, the updated version will be posted at this URL with a new “last updated” date. Material changes will also be noted in the extension's changelog.
8. Contact
Questions or concerns about this policy can be raised at github.com/AnSuHan/chrome-extension/issues.
Tabinet 개인정보처리방침
최종 수정일: 2026년 9월 5일
Tabinet 은 어떠한 사용자 데이터도 수집·전송·판매하지 않습니다. 계정도, 분석 도구도, 추적도, 개발자가 운영하는 서버도 없습니다. 확장 프로그램이 저장하는 모든 것은 사용자의 브라우저 안에 머무릅니다.
1. 저장하는 정보
탭 그룹을 나중에 복원하기 위해 다음을 사용자 기기에 저장합니다.
- 저장된 그룹의 이름과 색상
- 그룹에 속한 각 탭의 제목과 URL
- 설정값(동기화, 백그라운드 유지, 프리로드, 자동 저장 2종)과 현재 창에 열려 있는 그룹 정보
저장에는 chrome.storage.local 을 사용하며, 이 데이터는 기기를 벗어나지
않습니다.
사용자가 “Sync across devices” 를 직접 켠 경우에만
chrome.storage.sync 로 옮겨져, 사용자 본인의 Google 계정을 통해 다른
Chrome 에서도 보이게 됩니다. 이 전송은 Chrome 이 수행하며 Google 의 개인정보처리방침을 따르고,
Tabinet 개발자는 접근할 수 없습니다. 기본값은 꺼짐입니다.
2. 네트워크 요청
Tabinet 이 보내는 네트워크 요청은 한 종류뿐이며, 개발자에게 가는 요청은 없습니다.
프리워밍. 저장한 워크스페이스를 열면 탭들이 우선 로컬 플레이스홀더로 열리고, 백그라운드에서 그 탭들의 URL(사용자가 직접 저장한 페이지)을 기존 쿠키와 함께 요청합니다. DNS/TLS 연결과 로그인 리다이렉트를 미리 처리하고 문서를 Chrome 캐시에 올려 두기 위한 것으로, 탭을 클릭했을 때 로그인된 페이지가 곧바로 뜨게 합니다.
- 응답을 렌더링·파싱·검사하지 않습니다. HTML 본문은 캐시에 적재되도록 흘려보낼 뿐이고, 그 외 형식은 헤더 수신 후 중단합니다.
- 페이지 내용을 저장하거나 어디로도 보내지 않습니다.
- 요청 대상은 사용자가 저장한 사이트뿐입니다. 제3자도, 개발자 서버도 관여하지 않습니다.
- 동시 요청 수·타임아웃·재요청 간격이 제한되어 있고, 워크스페이스를 벗어나면 즉시 취소됩니다.
분석·텔레메트리·광고 SDK 는 없으며, 원격 코드도 사용하지 않습니다. 모든 JavaScript 는 확장 패키지에 포함되어 있습니다.
3. 권한
tabs(탭 저장·복원), tabGroups(복원된 워크스페이스를 Chrome 탭
그룹으로 묶기), storage(1항의 저장), downloads(JSON 백업 저장),
sidePanel(사이드바 표시), 호스트 접근(2항의 프리워밍)에 사용됩니다. 워크스페이스에는
사용자가 고르는 어떤 사이트든 들어갈 수 있어 호스트 범위를 미리 좁힐 수 없습니다.
4. 제3자 제공
수집하는 정보가 없으므로 제공할 정보도 없습니다. 데이터를 판매하거나 제3자에게 전송하지 않고, 광고 목적이나 신용도 평가·대출 목적으로 사용하지 않습니다.
5. 사용자의 통제권
- 사이드패널·에디터에서 탭 하나, 그룹 하나, 또는 전체를 삭제할 수 있습니다.
- “Save” 로 전체를 JSON 파일로 내보내고 “Load” 로 되돌릴 수 있습니다.
- 동기화를 끄면 데이터가 다시 기기 안으로 돌아옵니다.
- 확장을 삭제하면 저장된 그룹을 포함한 확장 저장소가 함께 제거됩니다. 내보낸 JSON 파일은 일반 파일이므로 영향을 받지 않습니다.
6. 아동 및 민감정보
Tabinet 은 일반적인 탭 관리 도구로 아동을 대상으로 하지 않으며, 건강·금융·인증·위치·개인 식별 정보를 요청하지 않습니다.
7. 변경
방침이 변경되면 이 URL 에 수정일과 함께 게시합니다.