Treeify

大量のメモ、タブ、ブックマークなどをまとめてスマートに管理するための拡張機能です。

What is Treeify?

Treeify is a Chrome extension developed by ootidea, and its main feature is "大量のメモ、タブ、ブックマークなどをまとめてスマートに管理するための拡張機能です。".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Treeify Extension CRX File

Download Treeify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        気になる情報の総合データベースとして運用できます。

【🔵主な機能】
✅ アウトライナーの基本機能全て
✅ 項目のドラッグアンドドロップ移動
✅ ツリー化されたタブをまとめて閉じる/開く
✅ 未読ウェブページ項目の強調表示
✅ ウェブページ内のテキストや画像の引用
✅ Chromeの再起動時やクラッシュ時にもデータを維持
✅ 高速な検索
✅ キーボードショートカットのカスタマイズ
✅ Markdown形式などでのエクスポート
✅ GoogleドライブAPIで複数デバイス間のデータ共有
✅ カスタムCSS

【🔵Treeifyが必要とするアクセス権限とその用途】
1. 「すべてのウェブサイト上にある自分の全データの読み取りと変更」

ウェブページ閲覧中にマウスを画面端に動かすことでTreeifyのタブに切り替える機能のために必要です。
マウスポインターの座標や速度を取得し、画面端に到達したことを検出します。

2. 「ブックマークの読み取りと変更」

ブックマークをTreeifyにインポートする機能のために必要です。
ブックマークの追加、編集、削除などは行わず、読み取りだけを行います。

────────────────────────────────────
公式Twitterアカウント:@Treeify_jp

Treeifyは非営利のオープンソースプロジェクトです。
ソースコードはGitHubで公開されています。
https://github.com/treeify/treeify-browser-extension                    

Extension Basic Information

Name Treeify Treeify
ID jamajbdcajmklapbejkdkepajjkoblcf
Official URL https://chromewebstore.google.com/detail/treeify/jamajbdcajmklapbejkdkepajjkoblcf
Description 大量のメモ、タブ、ブックマークなどをまとめてスマートに管理するための拡張機能です。
File Size 2.16 MB
Installation Count 74
Current Version 1.0.6
Last Updated 2023-12-12
Publish Date 2022-03-30
Developer ootidea
Email [email protected]
Payment Type free
Extension Website https://github.com/treeify/treeify-browser-extension
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.6",
    "name": "Treeify",
    "description": "\u5927\u91cf\u306e\u30e1\u30e2\u3001\u30bf\u30d6\u3001\u30d6\u30c3\u30af\u30de\u30fc\u30af\u306a\u3069\u3092\u307e\u3068\u3081\u3066\u30b9\u30de\u30fc\u30c8\u306b\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u62e1\u5f35\u6a5f\u80fd\u3067\u3059\u3002",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "logo\/16px.png"
        },
        "default_title": "Treeify",
        "default_popup": "browser-action.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "commands": {
        "show-treeify-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            },
            "description": "Treeify\u30bf\u30d6\u306b\u5207\u308a\u66ff\u3048"
        },
        "close-tab-and-show-treeify-tab": {
            "suggested_key": {
                "default": "Ctrl+W"
            },
            "description": "\u95b2\u89a7\u4e2d\u306e\u30bf\u30d6\u3092\u9589\u3058\u3066Treeify\u30bf\u30d6\u306b\u5207\u308a\u66ff\u3048"
        }
    },
    "icons": {
        "16": "logo\/16px.png",
        "48": "logo\/48px.png",
        "128": "logo\/128px.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "tabs",
        "scripting",
        "contextMenus",
        "bookmarks",
        "identity",
        "idle"
    ],
    "oauth2": {
        "client_id": "413683253908-4qulc32i1uaau194km3lmnr4j7mnrbmt.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.file"
        ]
    }
}