Treeify

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

Treeify란 무엇입니까?

Treeify은(는) ootidea에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "大量のメモ、タブ、ブックマークなどをまとめてスマートに管理するための拡張機能です。"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Treeify 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

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

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

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

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

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

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

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

확장 프로그램 기본 정보

이름 Treeify Treeify
ID jamajbdcajmklapbejkdkepajjkoblcf
공식 URL https://chromewebstore.google.com/detail/treeify/jamajbdcajmklapbejkdkepajjkoblcf
설명 大量のメモ、タブ、ブックマークなどをまとめてスマートに管理するための拡張機能です。
파일 크기 2.16 MB
설치 횟수 74
현재 버전 1.0.6
최근 업데이트 2023-12-12
출시 날짜 2022-03-30
개발자 ootidea
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/treeify/treeify-browser-extension
지원되는 언어 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"
        ]
    }
}