Ticksy

See real-time stock and crypto prices by hovering over Twitter cashtags.

Ticksy란 무엇입니까?

Ticksy은(는) https://hshaikh.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See real-time stock and crypto prices by hovering over Twitter cashtags."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Ticksy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Provides prices for stocks and crypto when you hover over ticker symbols ($TSLA, $BTC), also known as cashtags on Twitter 

Ticksy extension is a simple and useful tool to let you view real time stock and crypto prices, right on Twitter, when you hover on a cashtag. Simply hover on a given stock cashtag in any of the Tweets in your feed and see real-time stock price, as well as additional data such as market cap, volume and shares outstanding. For cryptocurrencies, the extension also shows real-time stock prices as well as 24 hour High and Low price data and the 24hr volume for the cryptocurrency. 

Unlike other similar extensions, this extension does not open an external webpage for price and the extension does not require logging in to Twitter to see the prices. It does not require any permissions besides storage (so if you hover over a cashtag very frequently, instead of a new API call, the local storage shows the latest price data)                    

확장 프로그램 기본 정보

이름 Ticksy Ticksy
ID ampcecklneicdcibnhahchimnmhdndlb
공식 URL https://chromewebstore.google.com/detail/ticksy/ampcecklneicdcibnhahchimnmhdndlb
설명 See real-time stock and crypto prices by hovering over Twitter cashtags.
파일 크기 385 KB
설치 횟수 323
현재 버전 1.5.0
최근 업데이트 2022-04-06
출시 날짜 2021-12-08
평점 4.50/5 총 4 개의 평점
개발자 https://hshaikh.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ticksy",
    "description": "See real-time stock and crypto prices by hovering over Twitter cashtags.",
    "version": "1.5.0",
    "icons": {
        "32": "favicon-32x32.png"
    },
    "browser_action": {
        "default_title": "Ticksy",
        "default_popup": "popup.html",
        "default_icon": {
            "32": "favicon-32x32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "popup\/dom-to-image.min.js",
                "popup\/popup.js",
                "popup\/iex_api.js",
                "stiqur.js"
            ],
            "css": [
                "popup\/popup.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "popup\/stiqur_logo_fit.png",
        "popup\/stiqur_load.svg",
        "popup\/ticksy.png",
        "popup\/twitter.svg",
        "*.woff2",
        "*.woff"
    ],
    "permissions": [
        "http:\/\/twitter.com\/",
        "https:\/\/twitter.com\/",
        "storage"
    ]
}