What Cashtag?

See up-to-date company info and price data for any cashtag on Twitter.

What Cashtag?คืออะไร?

What Cashtag? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bedelstein12 และคุณลักษณะหลักของมันคือ "See up-to-date company info and price data for any cashtag on Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย What Cashtag?

ดาวน์โหลดไฟล์ส่วนขยาย What Cashtag? ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Twitter uses cashtags ($) to track tweets on stock tickers, but doesn't give any context about the stocks themselves. This extension provides that context, in the form of an info bar on the side of a cashtag's search page. 

🤔 No need to memorize ticker symbols, we look up the company name for every cashtag
📈 5 day share price chart
🌓 Supports light, dim, and lights out modes on Twitter!

Once you've downloaded the extension, grab a free API key from alphavantage.co, and follow the instructions to enter that key into the extension's popup window. 

Then head to Twitter and click on any cashtag to start seeing results!

Note: The free API tier from AlphaVantage only allows for 5 queries per minute, and 500 per day. If you run into errors where certain data won't display, it's because of these limits. Just wait a minute to try again, or you can personally upgrade to a paid API key with higher query limits.



DISCLAIMER: This Chrome extension has no affiliations with Twitter Inc. All copyrights belong to their respective owners. Twitter doesn’t endorse or sponsor this Chrome extension. This Chrome extension is not owned by, is not licensed by and is not a subsidiary of Twitter Inc. Twitter, the Twitter logo, Tweets, are trademark of Twitter Inc. The content of this Chrome extension is not supplied or reviewed by Twitter Inc. All articles, images, logos and trademarks in this Chrome extension are property of their respective owners.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ What Cashtag? What Cashtag?
ID laelnjcgenbccjfflgabclfkmnjfdjak
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/what-cashtag/laelnjcgenbccjfflgabclfkmnjfdjak
คำอธิบาย See up-to-date company info and price data for any cashtag on Twitter.
ขนาดไฟล์ 348 KB
จำนวนการติดตั้ง 102
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-09-11
วันที่เผยแพร่ 2020-03-30
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา bedelstein12
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "What Cashtag?",
    "version": "1.1",
    "description": "See up-to-date company info and price data for any cashtag on Twitter.",
    "author": "Ben Edelstein",
    "icons": {
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon_48.png"
        },
        "default_popup": "popup.html",
        "default_title": "What Cashtag?"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/search?q=%24*",
                "http:\/\/twitter.com\/search?q=%24*"
            ],
            "run_at": "document_idle",
            "css": [
                "content.css"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "plotly-basic.min.js",
                "stocks.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/alert.png",
        "images\/checkmark.png"
    ],
    "permissions": [
        "webNavigation",
        "*:\/\/twitter.com\/*",
        "storage"
    ]
}