similarWeb website rank badge

showing the current webpage's website rank on the extension icon

什麼是similarWeb website rank badge?

similarWeb website rank badge是由twbbbb開發的Chrome擴展程式,該擴展的主要功能是“showing the current webpage's website rank on the extension icon”。

擴展截圖

screenshot

下載similarWeb website rank badge擴展crx文件

下載similarWeb website rank badge擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        fetch data from
https://rank.similarweb.com/api/v1/global

showing the hyperlink's rank on the bottom left when the mouse hovering on the hyperlink                    

擴展基本資訊

名稱 similarWeb website rank badge similarWeb website rank badge
ID pdekkkflpnnpmgfmjkmlnabfoeinbfgk
官方網址 https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk
簡介 showing the current webpage's website rank on the extension icon
檔案大小 8.58 KB
安裝次數 73
目前版本 1.1.1
更新時間 2022-06-27
上架時間 2021-09-23
開發者 twbbbb
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/twbbbb/website-rank-badge-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "manifest_version": 2,
    "icons": {
        "128": "128x128.png"
    },
    "name": "similarWeb website rank badge",
    "description": "showing the current webpage's website rank on the extension icon",
    "permissions": [
        "activeTab",
        "webNavigation",
        "https:\/\/rank.similarweb.com\/api\/v1\/global"
    ],
    "version": "1.1.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}