Tagpacker's "Pack It" Button
Organize bookmarks your way. Faster than ever with the "Pack it" button.
Apa itu Tagpacker's "Pack It" Button?
Tagpacker's "Pack It" Button adalah ekstensi Chrome yang dikembangkan oleh https://tagpacker.com, dan fitur utamanya adalah "Organize bookmarks your way. Faster than ever with the "Pack it" button.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tagpacker's "Pack It" Button
Unduh file ekstensi Tagpacker's "Pack It" Button dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Tagpacker's "Pack It" Button |
ID | nohjijligchgbabiimogbigfkjmhekdm |
URL Resmi | https://chromewebstore.google.com/detail/tagpackers-pack-it-button/nohjijligchgbabiimogbigfkjmhekdm |
Deskripsi | Organize bookmarks your way. Faster than ever with the "Pack it" button. |
Ukuran File | 15.19 KB |
Jumlah Instalasi | 4,011 |
Versi Saat Ini | 1.0.18 |
Terakhir Diperbarui | 2021-10-07 |
Tanggal Publikasi | 2019-01-31 |
Penilaian | 4.35/5 Total 23 Penilaian |
Pengembang | https://tagpacker.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://tagpacker.com?ref=csp |
URL Halaman Bantuan | https://tagpacker.com/faq?ref=csp |
URL Halaman Kebijakan Privasi | https://www.tagpacker.com/privacyPolicy |
Bahasa yang Didukung | 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" } } |