Rectus

A homepage improvement tool using web search results

Что такое Rectus?

Rectus - это расширение Chrome, разработанное https://www.rectus.co.jp, и его основная функция - "A homepage improvement tool using web search results".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Rectus

Скачайте файлы расширений Rectus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
    }
}