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.」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |