Save my tabs!

Save all open tabs to a bookmark folder

Save my tabs!란 무엇입니까?

Save my tabs!은(는) salvoventura에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save all open tabs to a bookmark folder"입니다.

확장 프로그램 스크린샷

screenshot

Save my tabs! 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An open source browser addon/extension to bookmark at once all open tabs to a folder in the Bookmarks Toolbar.


Why this tool

I wanted a simple and easy way to dump lots of open tabs to a folder, so that I can reopen them all at a later time.


Background

Anyone doing online research ends up eventually with a lot of content open across multiple tabs. As it usually happens, many of these tabs are kept open just as a placeholder for review, which may not happen right away. If you cannot keep your browser open forever, or if you have multiple research projects going on at the same time, it can be convenient to just dump the current tabs on a bookmark folder, which makes it easy to resume the research activity at a later time. In fact, you can use the Open All in Tabs option on the folder to reopen all tabs.                    

확장 프로그램 기본 정보

이름 Save my tabs! Save my tabs!
ID kfoppgabigkfegjfafmadikhjllohfep
공식 URL https://chromewebstore.google.com/detail/save-my-tabs/kfoppgabigkfegjfafmadikhjllohfep
설명 Save all open tabs to a bookmark folder
파일 크기 54.7 KB
설치 횟수 256
현재 버전 1.2.2
최근 업데이트 2024-01-22
출시 날짜 2020-04-26
평점 5.00/5 총 1 개의 평점
개발자 salvoventura
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/salvoventura/save-my-tabs
도움말 페이지 URL https://github.com/salvoventura/save-my-tabs
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save my tabs!",
    "version": "1.2.2",
    "description": "Save all open tabs to a bookmark folder",
    "homepage_url": "https:\/\/github.com\/salvoventura\/save-my-tabs",
    "icons": {
        "32": "icons\/iconfinder_tab_new_raised_18931.png"
    },
    "permissions": [
        "bookmarks",
        "tabs",
        "alarms",
        "storage"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "lib\/browser-polyfill.min.js",
            "lib\/common.js",
            "background\/background.js"
        ]
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options\/options.html"
    },
    "browser_action": {
        "default_icon": "icons\/iconfinder_tab_new_raised_18931.png",
        "default_title": "Save my tabs!",
        "default_popup": "popup\/save-my-tabs.html"
    }
}