Display Ranking

You can display the ranking in the Web search results.

Display Rankingとは何ですか?

Display Rankingはhttps://www.rectus.co.jpによって開発されたChromeの拡張機能で、その主な機能は「You can display the ranking in the Web search results.」です。

拡張機能のスクリーンショット

screenshot

Display Ranking拡張機能のCRXファイルをダウンロード

Display Ranking拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The ranking can be displayed in the search result of the search engine.
Supported search engines: Google, Bing and Yahoo.

If there is a site that you pay attention to, register it in advance so that you can click to move to that site page if it is displayed in the search results.                    

拡張機能の基本情報

名前 Display Ranking Display Ranking
ID npolfbklkkpiomaddlnejicfifbbkafn
公式URL https://chromewebstore.google.com/detail/display-ranking/npolfbklkkpiomaddlnejicfifbbkafn
説明 You can display the ranking in the Web search results.
ファイルサイズ 56.09 KB
インストール数 4,210
現在のバージョン 1.0.25
最終更新日 2023-10-30
公開日 2020-04-12
評価 4.33/5 合計 3 レビュー
開発者 https://www.rectus.co.jp
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.rectus.co.jp/tool/displayranking.html
ヘルプページのURL https://www.rectus.co.jp/tool/displayranking.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.0.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"
    ],
    "content_scripts": [
        {
            "matches": [
                "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*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "contentscript.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}