Display Ranking

You can display the ranking in the Web search results.

Display Rankingคืออะไร?

Display Ranking เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.rectus.co.jp และคุณลักษณะหลักของมันคือ "You can display the ranking in the Web search results."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Display Ranking

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
    }
}