TabSqueeze

Squeeze your tabs and save or share them anywhere

TabSqueeze란 무엇입니까?

TabSqueeze은(는) https://tabsqueeze.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Squeeze your tabs and save or share them anywhere"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TabSqueeze 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        You've heard of links shorteners. TabSqueeze is tabs shortener! :)

It solves the problem of too many tabs in Chrome. When you have too may tabs it consumes both your computer memory, and  your concentration.

Instead of keeping tabs around just because you hope to return to them later, compress them into single link!
You can add that link into your notes, To-Do tracker, or share with a friend.

TabSqueeze provides the fastest way to compress any number of tabs into a single web page.

TabSqueeze features:

- Compresses tabs into single link
- Auto-copies link into clipboard
- It respects pinned tabs and keeps them open
- Ability to squeeze selected tabs (use Shift+Click on tabs)
- Restore all links and turn them back to tabs in one click                    

확장 프로그램 기본 정보

이름 TabSqueeze TabSqueeze
ID lgkpgmidgejbdlgijmapikkhaljeaogk
공식 URL https://chromewebstore.google.com/detail/tabsqueeze/lgkpgmidgejbdlgijmapikkhaljeaogk
설명 Squeeze your tabs and save or share them anywhere
파일 크기 495 KB
설치 횟수 124
현재 버전 1.0.0
최근 업데이트 2018-01-28
출시 날짜 2018-01-28
평점 4.33/5 총 6 개의 평점
개발자 https://tabsqueeze.com
결제 유형 free
확장 프로그램 웹 사이트 http://tabsqueeze.com
도움말 페이지 URL http://tabsqueeze.com/faq
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "name": "TabSqueeze",
    "icons": {
        "16": "squeezed16x16.png",
        "32": "squeezed32x32.png",
        "48": "squeezed48x48.png",
        "64": "squeezed64x64.png",
        "128": "squeezed128x128.png"
    },
    "browser_action": {
        "default_title": "TabSqueeze",
        "default_icon": "squeezed64x64.png"
    },
    "author": "Maxim Topchu ",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/tabsqueeze.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "",
        "tabs",
        "notifications",
        "storage",
        "contextMenus"
    ],
    "description": "Squeeze your tabs and save or share them anywhere",
    "version": "1.0.0"
}