TrendSpider

An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.

TrendSpiderคืออะไร?

TrendSpider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://trendspider.com และคุณลักษณะหลักของมันคือ "An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage."

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

screenshot
screenshot
screenshot

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

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

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

                        This extension enables TrendSpider users to quickly and easily see a chart for any stock or crypto symbol they encounter on the web simply by hovering their mouse over the symbol in their browser. 

This makes the process of investment research online easier by giving users quick access to their TrendSpider charts, complete with indicators, drawings and automated pattern recognition.

To use this extension, you need a valid and active TrendSpider account. You may authenticate your account after installing the extension.

Please note, this is a BETA feature and may contain some bugs. If you encounter any issues, please report it to the TrendSpider support team and we will address them.

Thank you and enjoy!                    

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

ชื่อ TrendSpider TrendSpider
ID kpmgohkagfcbhglaglpemcmockdahpjn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trendspider/kpmgohkagfcbhglaglpemcmockdahpjn
คำอธิบาย An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.
ขนาดไฟล์ 95.31 KB
จำนวนการติดตั้ง 1,716
เวอร์ชันปัจจุบัน 1.0.3.1
อัปเดตครั้งล่าสุด 2022-08-23
วันที่เผยแพร่ 2022-08-20
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา https://trendspider.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://trendspider.com
URL หน้าช่วยเหลือ https://help.trendspider.com
URL หน้านโยบายความเป็นส่วนตัว https://trendspider.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "TrendSpider",
    "description": "An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.",
    "version": "1.0.3.1",
    "icons": {
        "128": "\/img\/logo.png",
        "512": "\/img\/logo.png"
    },
    "action": {
        "default_popup": "\/pages\/popup\/index.html"
    },
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/lib\/jquery.min.js",
                "\/js\/classes\/Chromane.js",
                "\/js\/classes\/Util.js",
                "\/ts\/Log.js",
                "\/ts\/Content.js",
                "\/ts\/Handlers.js",
                "\/ts\/Parser.js",
                "\/js\/content_script.js"
            ]
        },
        {
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "https:\/\/charts.trendspider.com\/mobile_chart*"
            ],
            "js": [
                "\/js\/mobile_chart_content_script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/charts.trendspider.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "extension_ids": [
                "gcicjfgfahmcilbgpmkalhhkopobkdah"
            ]
        }
    ]
}