Tagpacker's "Pack It" Button

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

O que é Tagpacker's "Pack It" Button?

Tagpacker's "Pack It" Button é uma extensão do Chrome desenvolvida por https://tagpacker.com, e sua principal característica é "Organize bookmarks your way. Faster than ever with the "Pack it" button.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tagpacker's "Pack It" Button

Baixe arquivos de extensão Tagpacker's "Pack It" Button no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tagpacker's Tagpacker's "Pack It" Button
ID nohjijligchgbabiimogbigfkjmhekdm
URL Oficial https://chromewebstore.google.com/detail/tagpackers-pack-it-button/nohjijligchgbabiimogbigfkjmhekdm
Descrição Organize bookmarks your way. Faster than ever with the "Pack it" button.
Tamanho do Arquivo 15.19 KB
Contagem de Instalações 4,011
Versão Atual 1.0.18
Última Atualização 2021-10-07
Data de Publicação 2019-01-31
Classificação 4.35/5 Total de 23 Avaliações
Desenvolvedor https://tagpacker.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://tagpacker.com?ref=csp
URL da Página de Ajuda https://tagpacker.com/faq?ref=csp
URL da Página de Política de Privacidade https://www.tagpacker.com/privacyPolicy
Idiomas Suportados 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"
    }
}