Rectus

A homepage improvement tool using web search results

Rectus란 무엇입니까?

Rectus은(는) https://www.rectus.co.jp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A homepage improvement tool using web search results"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        It is a tool to improve the homepage by using the results of a web search.
Supported search engines Google Bing Yahoo

If you have a site that you want to focus on, you can register it in advance so that you can click on it when it appears in the search results.

The link to the "morphological analysis page" will be displayed at the place where it is displayed, so you can easily do the morphological analysis of the page.                    

확장 프로그램 기본 정보

이름 Rectus Rectus
ID dboiahegkeihkmihjekebccchlnmglji
공식 URL https://chromewebstore.google.com/detail/rectus/dboiahegkeihkmihjekebccchlnmglji
설명 A homepage improvement tool using web search results
파일 크기 78.91 KB
설치 횟수 111
현재 버전 1.1.25
최근 업데이트 2023-11-21
출시 날짜 2020-05-21
개발자 https://www.rectus.co.jp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.rectus.co.jp/tool/rectus.html
도움말 페이지 URL https://www.rectus.co.jp/tool/displayranking-support.html
개인정보 보호 정책 페이지 URL https://www.rectus.co.jp/company/privacy.html
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_shortname__",
    "version": "1.1.25",
    "description": "__MSG_ext_description__",
    "default_locale": "ja",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "__MSG_ext_name__",
        "default_icon": {
            "19": "icons\/icon-19.png"
        }
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "contentscript.css"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "search_engine": [
                "https:\/\/www.google.com\/search*",
                "https:\/\/www.google.co.jp\/search*",
                "https:\/\/www.bing.com\/search*",
                "https:\/\/search.yahoo.com\/search*",
                "https:\/\/search.yahoo.co.jp\/search*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}