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文件

下載Tagpacker's "Pack It" Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}