similarWeb website rank badge
showing the current webpage's website rank on the extension icon
What is similarWeb website rank badge?
similarWeb website rank badge is a Chrome extension developed by twbbbb, and its main feature is "showing the current webpage's website rank on the extension icon".
Extension Screenshots
Download similarWeb website rank badge Extension CRX File
Download similarWeb website rank badge extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | similarWeb website rank badge |
ID | pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
Official URL | https://chromewebstore.google.com/detail/similarweb-website-rank-b/pdekkkflpnnpmgfmjkmlnabfoeinbfgk |
Description | showing the current webpage's website rank on the extension icon |
File Size | 8.58 KB |
Installation Count | 73 |
Current Version | 1.1.1 |
Last Updated | 2022-06-27 |
Publish Date | 2021-09-23 |
Developer | twbbbb |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/twbbbb/website-rank-badge-extension |
Supported Languages | 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" ] } ] } |