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”。
扩展截图
下载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 |
ID | pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
官方URL | 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" ] } ] } |