FEBOX

Cross-platform bookmarking and searching

FEBOX란 무엇입니까?

FEBOX은(는) firmeve에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cross-platform bookmarking and searching"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        At present, I am very excited and excited because the Febox platform has been launched.

Bookmarks are one of the important functions of the browser, but the bookmark itself cannot replace us better classification, collection, and search, so this is where Febox focuses on.

In Febox, you can collect the content, pictures, constituencies or links offline, and the content of the collection will automatically identify the main area and remove the advertisement in most scenarios. This is where we are excited for it.

We will save these data permanently, and we will no longer worry about the content of the bookmark link that has not been visited for a long time will be deleted

We provide a very convenient full -content search support. For any page, as long as a shortcut key (Shift+Alt+K), you can focus on searching for the content you have preserved, and also support the content of the content that is not found to automatically jump to the search to search for search. Engine, this is your exclusive search tool                    

확장 프로그램 기본 정보

이름 FEBOX FEBOX
ID mjaioceoblooamkkddmgdbcfdhneoncm
공식 URL https://chromewebstore.google.com/detail/febox/mjaioceoblooamkkddmgdbcfdhneoncm
설명 Cross-platform bookmarking and searching
파일 크기 613 KB
설치 횟수 132
현재 버전 0.3.3
최근 업데이트 2023-01-25
출시 날짜 2022-05-25
평점 5.00/5 총 1 개의 평점
개발자 firmeve
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://febox.app
도움말 페이지 URL https://document.firmeve.com/
개인정보 보호 정책 페이지 URL https://firmeve.com/protocol
지원되는 언어 en-US,fr,ar,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FEBOX",
    "description": "Cross-platform bookmarking and searching",
    "version": "0.3.3",
    "default_locale": "en_US",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "logo\/16-16.png",
        "32": "logo\/32-32.png",
        "48": "logo\/48-48.png",
        "128": "logo\/128-128.png"
    },
    "action": {
        "default_title": "FEBOX"
    },
    "commands": {
        "collect-page": {
            "suggested_key": {
                "default": "Shift+Alt+P"
            },
            "description": "Save page content"
        },
        "search-content": {
            "suggested_key": {
                "default": "Shift+Alt+K"
            },
            "description": "Search collect content"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "history"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/firmeve.com\/*",
            "http:\/\/firmeve.com\/*",
            "https:\/\/febox.app\/*",
            "http:\/\/febox.app\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "notify.html",
                "collect.html",
                "search.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}