similarWeb website rank badge
showing the current webpage's website rank on the extension icon
similarWeb website rank badgeคืออะไร?
similarWeb website rank badge เป็นส่วนขยายของ Chrome ที่พัฒนาโดย twbbbb และคุณลักษณะหลักของมันคือ "showing the current webpage's website rank on the extension icon"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย similarWeb website rank badge
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |