Friend.tech Gems
[Open-sourced] Highlight friend.tech gems info on Twitter
What is Friend.tech Gems?
Friend.tech Gems is a Chrome extension developed by friendtechgems, and its main feature is "[Open-sourced] Highlight friend.tech gems info on Twitter".
Extension Screenshots
Download Friend.tech Gems Extension CRX File
Download Friend.tech Gems 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
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 *
Extension Basic Information
Name | Friend.tech Gems |
ID | mlmjpgbhppfkhokjonigdbpiigpklefa |
Official URL | https://chromewebstore.google.com/detail/friendtech-gems/mlmjpgbhppfkhokjonigdbpiigpklefa |
Description | [Open-sourced] Highlight friend.tech gems info on Twitter |
File Size | 420 KB |
Installation Count | 113 |
Current Version | 2.4.2 |
Last Updated | 2023-10-24 |
Publish Date | 2023-08-31 |
Rating | 5.00/5 Total 1 Ratings |
Developer | friendtechgems |
[email protected] | |
Payment Type | free |
Help Page URL | https://twitter.com/friendtech_gems |
Supported Languages | 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": [] } ] } |