Foundit! - searchable bookmarks

✓ Your bookmarks integrated in your search results

Foundit! - searchable bookmarks란 무엇입니까?

Foundit! - searchable bookmarks은(는) bmpenuelas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "✓ Your bookmarks integrated in your search results"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Foundit! - searchable bookmarks 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can search your bookmarks directly from Google (or Bing, DuckDuckGo, Yahoo)! The next time you search something similar, you will see your own saved results in the search results list.


A Found it! smart bookmark saves:
- A title based on the search terms that you used to find it.
- If you highlight the relevant information in the page, that text will be added as a note.
- A link to the website.
- The search result that led you to that website.
- Automatic labels that you can add to put bookmarks in folders.


You can see all your bookmarks in a responsive dashboard where everything is searchable, you can edit, add and remove bookmarks, and sync across all your devices (Chrome, Firefox, desktop, smartphone).


One click to save the perfect result forever.                    

확장 프로그램 기본 정보

이름 Foundit! - searchable bookmarks Foundit! - searchable bookmarks
ID laobnfoijlgbpjhodlhmabdmchhphhkj
공식 URL https://chromewebstore.google.com/detail/foundit-searchable-bookma/laobnfoijlgbpjhodlhmabdmchhphhkj
설명 ✓ Your bookmarks integrated in your search results
파일 크기 2.53 MB
설치 횟수 42
현재 버전 0.0.62
최근 업데이트 2020-12-12
출시 날짜 2020-05-31
평점 5.00/5 총 4 개의 평점
개발자 bmpenuelas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://foundit.at/
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/privacy/view/4e60134f38c1b535a7243779d251f1a5
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Foundit! - searchable bookmarks",
    "description": "\u2713 Your bookmarks integrated in your search results",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhW3Mt\/Cp8KpiptqnulFbdOndCkfMTgvugC\/yLircjvhR3P19lT5bLbVVjhpwFzMl5L0ZWNYwM1EYzpKQCG0Drjcl7N87IQy0rE3ANmr59WvdaqnVs0utWfFygk7WywxzHvVTmAJm7oH6FmI+o5lZshYTr2mwNQPjbtRsq7X9IGfnCYAMaaTxff4DZiS5vieZErZg\/h4UUWa\/PWPSp42wHMIcm\/c5D72YxuPQxTNmNPljme+eS4fZ8IJQ4fgxibLrgR7KyHhALHxDJMvvk73jVaRokQzMCvUpYpbLo0qbw2JfdpMg5MQPyvmFm3urq+gjTXjDIkA\/ki+vTlC49Y7tyQIDAQAB",
    "version": "0.0.62",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0"
        }
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Foundit!",
        "default_icon": "icons\/icon_48.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+S",
                "mac": "Alt+S",
                "chromeos": "Alt+S",
                "linux": "Alt+S"
            }
        }
    },
    "omnibox": {
        "keyword": "f!"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_search.js"
            ],
            "css": [
                "content_search.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content_all.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content_insert_tab.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.stackoverflow.com\/questions\/*",
                "*:\/\/forums.xilinx.com\/*"
            ],
            "js": [
                "content_integration.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "popup\/popup.html",
        "icons\/icon_16.png",
        "icons\/icon_48.png",
        "icons\/icon_96.png",
        "icons\/icon_96_128.png",
        "icons\/icon_128.png",
        "icons\/icon_white_16.png",
        "icons\/icon_white_48.png",
        "icons\/icon_white_96.png",
        "icons\/icon_white_96_128.png",
        "icons\/icon_white_128.png",
        "icons\/icon_background_16.png",
        "icons\/icon_background_48.png",
        "icons\/icon_background_96.png",
        "icons\/icon_background_96_128.png",
        "icons\/icon_background_128.png",
        "icons\/misc\/subject.png"
    ],
    "options_ui": {
        "page": "webapp\/index.html#\/Settings",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "identity"
    ],
    "oauth2": {
        "client_id": "631987309722-rpc0pflrliljve9cioq7bc2ssa86b5uc.apps.googleusercontent.com",
        "scopes": [
            "openid",
            "email",
            "profile"
        ]
    }
}