Friend.tech Gems
[Open-sourced] Highlight friend.tech gems info on Twitter
Friend.tech Gems란 무엇입니까?
Friend.tech Gems은(는) friendtechgems에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "[Open-sourced] Highlight friend.tech gems info on Twitter"입니다.
확장 프로그램 스크린샷
Friend.tech Gems 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Friend.tech Gems aims to enrich your Twitter experience by highlighting valuable information related to friend.tech straight onto your feed. Dive into the gems of friend.tech without leaving your Twitter feed! 💡 This is a simple app that does not collect *any* private information. We only read the loaded twitter accounts on the screen and request friend.tech information regarding the accounts. * This product is currently in beta. Prices and ranks may currently be inaccurate. Real-time data will be live soon *
확장 프로그램 기본 정보
이름 | Friend.tech Gems |
ID | mlmjpgbhppfkhokjonigdbpiigpklefa |
공식 URL | https://chromewebstore.google.com/detail/friendtech-gems/mlmjpgbhppfkhokjonigdbpiigpklefa |
설명 | [Open-sourced] Highlight friend.tech gems info on Twitter |
파일 크기 | 420 KB |
설치 횟수 | 113 |
현재 버전 | 2.4.2 |
최근 업데이트 | 2023-10-24 |
출시 날짜 | 2023-08-31 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | friendtechgems |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://twitter.com/friendtech_gems |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "[Open-sourced] Highlight friend.tech gems info on Twitter", "version": "2.4.2", "manifest_version": 3, "name": "Friend.tech Gems", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": "icon48.png" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*", "https:\/\/tweetdeck.twitter.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "background": { "service_worker": "background.bundle.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "content.styles.css" ], "matches": [] } ] } |