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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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
    }
}