Rectus

A homepage improvement tool using web search results

Co to jest Rectus?

Rectus to rozszerzenie Chrome opracowane przez https://www.rectus.co.jp, a jego główną funkcją jest „A homepage improvement tool using web search results”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Rectus

Pobierz pliki rozszerzeń Rectus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rectus Rectus
ID dboiahegkeihkmihjekebccchlnmglji
Oficjalny URL https://chromewebstore.google.com/detail/rectus/dboiahegkeihkmihjekebccchlnmglji
Opis A homepage improvement tool using web search results
Rozmiar pliku 78.91 KB
Liczba instalacji 111
Aktualna Wersja 1.1.25
Ostatnia Aktualizacja 2023-11-21
Data Publikacji 2020-05-21
Deweloper https://www.rectus.co.jp
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.rectus.co.jp/tool/rectus.html
Adres URL Strony Pomocy https://www.rectus.co.jp/tool/displayranking-support.html
Adres URL Strony Polityki Prywatności https://www.rectus.co.jp/company/privacy.html
Obsługiwane Języki 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
    }
}