Tagpacker's "Pack It" Button

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

Qu'est-ce que Tagpacker's "Pack It" Button ?

Tagpacker's "Pack It" Button est une extension Chrome développée par https://tagpacker.com, et sa fonction principale est "Organize bookmarks your way. Faster than ever with the "Pack it" button.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Tagpacker's "Pack It" Button

Téléchargez les fichiers d'extension Tagpacker's "Pack It" Button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tagpacker's Tagpacker's "Pack It" Button
ID nohjijligchgbabiimogbigfkjmhekdm
URL Officiel https://chromewebstore.google.com/detail/tagpackers-pack-it-button/nohjijligchgbabiimogbigfkjmhekdm
Description Organize bookmarks your way. Faster than ever with the "Pack it" button.
Taille du Fichier 15.19 KB
Nombre d'Installations 4,011
Version Actuelle 1.0.18
Dernière Mise à Jour 2021-10-07
Date de Publication 2019-01-31
Évaluation 4.35/5 Total 23 Évaluations
Développeur https://tagpacker.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://tagpacker.com?ref=csp
URL de la Page d'Aide https://tagpacker.com/faq?ref=csp
URL de la Page de Politique de Confidentialité https://www.tagpacker.com/privacyPolicy
Langues Prises en Charge 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"
    }
}