Stock Dig

Highlight a stock symbol and get historical data on its performance.

什么是Stock Dig?

Stock Dig是由http://www.giantmultimedia.com开发的Chrome扩展程序,该扩展的主要功能是“Highlight a stock symbol and get historical data on its performance.”。

扩展截图

screenshot
screenshot
screenshot

下载Stock Dig扩展crx文件

下载Stock Dig扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Stock Dig. A simple extension that allows you to highlight a stock symbol on any given webpage and return the historical data related to that symbol. You can also search by stock symbol from the extension itself. Perform detailed research without leaving your current page. Filter by 1 month, 3 months, 6 months or year to date. Its all in one place and doesn't get in the way of the page's content. 

To see Stock Dig in action, watch our short demo on instagram:

http://instagram.com/p/mffacgwnsV/                    

扩展基本信息

名称 Stock Dig Stock Dig
ID bffindnedgcdmcnoihecinfjbbnlkhin
官方URL https://chrome.google.com/webstore/detail/stock-dig/bffindnedgcdmcnoihecinfjbbnlkhin
简介 Highlight a stock symbol and get historical data on its performance.
文件大小 323 KB
安装次数 50
当前版本 1.2
更新时间 2016-04-18
上架时间 2016-04-18
评分 4.00/5 共1次评分
开发者 http://www.giantmultimedia.com
付费类型 free
扩展官网 http://giantmultimedia.com/stockdig/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stock Dig",
    "version": "1.2",
    "description": "Highlight a stock symbol and get historical data on its performance.",
    "background": {
        "scripts": [
            "background2.js"
        ]
    },
    "homepage_url": "http:\/\/giantmultimedia.com",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js",
                "jquery.min.js",
                "firebase.js"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com\/* https:\/\/*.firebaseio.com; object-src 'self'",
    "browser_action": {
        "default_title": "Stock Dig",
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "manualSearch": {
            "suggested_key": {
                "default": "Ctrl+Shift+5"
            },
            "description": "Initiate manual search",
            "global": true
        }
    },
    "manifest_version": 2
}