Tagpacker's "Pack It" Button

Organize bookmarks your way. Faster than ever with the "Pack it" button.

Tagpacker's "Pack It" Button란 무엇입니까?

Tagpacker's "Pack It" Button은(는) https://tagpacker.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organize bookmarks your way. Faster than ever with the "Pack it" button."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Tagpacker's "Pack It" Button 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use the "Pack it" button to quickly save bookmarks side-by-side while browsing.

Whenever you find an interesting website that you want in your collection, just click on the blue Tagpacker icon. Once you click it, a sidebar will open where you can tag and comment on your bookmark before saving it. 

To save bookmarks you can 
*use the keyboard shortcut Ctrl + Shift + Z or
*right-click website elements (like videos or links) 

To easily find bookmarks you saved on Tagpacker just type 'tp ' in your browser address bar 

A complete list with all features is available at https://tagpacker.com/features 

Happy packing! :)



-------------------------------------------------------------------------------------------
*Terms of service: https://tagpacker.com/termsOfService
*Privacy policy: https://tagpacker.com/privacyPolicy                    

확장 프로그램 기본 정보

이름 Tagpacker's Tagpacker's "Pack It" Button
ID nohjijligchgbabiimogbigfkjmhekdm
공식 URL https://chromewebstore.google.com/detail/tagpackers-pack-it-button/nohjijligchgbabiimogbigfkjmhekdm
설명 Organize bookmarks your way. Faster than ever with the "Pack it" button.
파일 크기 15.19 KB
설치 횟수 4,011
현재 버전 1.0.18
최근 업데이트 2021-10-07
출시 날짜 2019-01-31
평점 4.35/5 총 23 개의 평점
개발자 https://tagpacker.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://tagpacker.com?ref=csp
도움말 페이지 URL https://tagpacker.com/faq?ref=csp
개인정보 보호 정책 페이지 URL https://www.tagpacker.com/privacyPolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "24": "icon_24.png",
        "36": "icon_36.png",
        "128": "icon_128.png"
    },
    "name": "Tagpacker's \"Pack It\" Button",
    "short_name": "Pack It",
    "description": "Organize bookmarks your way. Faster than ever with the \"Pack it\" button.",
    "version": "1.0.18",
    "browser_action": {
        "default_icon": "icon_36.png",
        "default_title": "Pack it!"
    },
    "background": {
        "scripts": [
            "background-page.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "outer-frame.html"
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "notifications",
        "tabs",
        "*:\/\/*\/*"
    ],
    "optional_permissions": [
        "bookmarks"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z",
                "chromeos": "Ctrl+Shift+Z",
                "linux": "Ctrl+Shift+Z",
                "default": "Ctrl+Shift+Z"
            }
        }
    },
    "omnibox": {
        "keyword": "tp"
    }
}