BitClout Plus
BitClout on steroids
BitClout Plus란 무엇입니까?
BitClout Plus은(는) https://bitclout.plus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "BitClout on steroids"입니다.
확장 프로그램 스크린샷
BitClout Plus 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Browser extension that enhances bitclout.com pages. BitClout+ is open source: https://github.com/iPaulPro/BitCloutPlus Things it adds: ✅ 15k character post limit ✅ Edit posts and comments ✅ Username mention autocomplete. ✅ Browse as other users (CloutMask) ✅ Post extra data support ✅ Active indicator ✅ Jumio verification indicator ✅ Follower and coin holder indicators ✅ Coin holder ranks and percentage of supply held ✅ Much, much more! Things it does not: ❌ Have access to your seed phrase ❌ Make any external web calls outside of bitclout.com ❌ Take any actions on your behalf For the full list of features, visit the website at https://bitclout.plus
확장 프로그램 기본 정보
이름 | BitClout Plus |
ID | djkhmpkljeampdpgbdjlgmjfeecfhifg |
공식 URL | https://chromewebstore.google.com/detail/bitclout-plus/djkhmpkljeampdpgbdjlgmjfeecfhifg |
설명 | BitClout on steroids |
파일 크기 | 132 KB |
설치 횟수 | 239 |
현재 버전 | 0.12.4 |
최근 업데이트 | 2022-04-06 |
출시 날짜 | 2021-05-19 |
평점 | 5.00/5 총 9 개의 평점 |
개발자 | https://bitclout.plus |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bitclout.plus |
도움말 페이지 URL | https://bitclout.com/u/plus |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BitClout Plus", "description": "BitClout on steroids", "version": "0.12.4", "manifest_version": 3, "content_security_policy": { "extension_pages": "script-src 'self'; connect-src https:\/\/node.deso.org https:\/\/bitclout.com; object-src 'self'; frame-ancestors 'none';" }, "author": "Paul Burke", "homepage_url": "https:\/\/github.com\/iPaulPro\/BitCloutPlus", "short_name": "BitClout+", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "omnibox": { "keyword": "deso" }, "content_scripts": [ { "matches": [ "https:\/\/bitclout.com\/*", "https:\/\/node.deso.org\/*" ], "js": [ "vendor\/tribute\/tribute.min.js", "vendor\/buffer\/buffer.min.js", "vendor\/sweetalert2\/sweetalert2.all.min.js", "vendor\/taboverride\/taboverride.min.js", "lib\/common.js", "lib\/embed.js", "lib\/api.js", "lib\/nft.js", "lib\/post.js", "lib\/profile.js", "lib\/follow.js", "lib\/cloutmask.js", "main.js" ], "css": [ "vendor\/tribute\/tribute.css", "main.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/bitclout.com\/*", "https:\/\/node.deso.org\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |