Omni - Bookmark, History, & Tab Manager

Supercharge Chrome with commands, shortcuts, and more

Omni - Bookmark, History, & Tab Manager란 무엇입니까?

Omni - Bookmark, History, & Tab Manager은(는) Alyssa X에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Supercharge Chrome with commands, shortcuts, and more"입니다.

확장 프로그램 스크린샷

screenshot

Omni - Bookmark, History, & Tab Manager 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        With Omni you can use Chrome like a pro. Manage tabs, bookmarks, your browser history, perform all sorts of actions and more with a simple command interface.

FEATURES
🗄 Switch, open, close, and search your tabs
📚 Browse and manage your bookmarks
🔍 Search your browsing history
⚡️ 50+ actions to improve your productivity
🔮 Special commands to filter and perform more actions
🧩 Integrations with Notion, Figma, Docs, Asana...
⌨️ Shortcuts for actions such as muting, pinning, bookmarking...
⚙️ Advanced settings to help troubleshoot browsing issues
🌙 Dark mode
...and much more - all for free & no sign in needed!

Want to self-host, add new features to Omni, or even make your own omnisearch extension? Feel free to check out the code on GitHub! 👉 https://github.com/alyssaxuu/omni

Omni is built and maintained by Alyssa X (https://alyssax.com)                    

확장 프로그램 기본 정보

이름 Omni - Bookmark, History, & Tab Manager Omni - Bookmark, History, & Tab Manager
ID mapjgeachilmcbbokkgcbgpbakaaeehi
공식 URL https://chromewebstore.google.com/detail/omni-bookmark-history-tab/mapjgeachilmcbbokkgcbgpbakaaeehi
설명 Supercharge Chrome with commands, shortcuts, and more
파일 크기 1.91 MB
설치 횟수 22,845
현재 버전 1.4.7
최근 업데이트 2022-03-22
출시 날짜 2022-01-10
평점 4.65/5 총 55 개의 평점
개발자 Alyssa X
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/alyssaxuu/omni
도움말 페이지 URL https://github.com/alyssaxuu/omni/issues
개인정보 보호 정책 페이지 URL https://alyssax.com/x/screenity/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Omni - Bookmark, History, & Tab Manager",
    "description": "Supercharge Chrome with commands, shortcuts, and more",
    "offline_enabled": true,
    "version": "1.4.7",
    "manifest_version": 3,
    "action": {
        "icons": {
            "16": "assets\/logo-16.png",
            "48": "assets\/logo-48.png",
            "128": "assets\/logo-128.png"
        }
    },
    "icons": {
        "16": "assets\/logo-16.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.png"
    },
    "commands": {
        "open-omni": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Open command menu"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "focus.js",
                "jquery.js",
                "content.js",
                "virtualized-list.min.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.html",
                "newtab.html",
                "assets\/*",
                "popup.css",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "bookmarks",
        "browsingData",
        "history",
        "scripting",
        "search"
    ],
    "host_permissions": [
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/gstatic.com\/*",
        "*:\/\/*\/*"
    ]
}