BETTER SEC EDGAR FOR CHROME USER

Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.

什麼是BETTER SEC EDGAR FOR CHROME USER?

BETTER SEC EDGAR FOR CHROME USER是由Tim Zhuang開發的Chrome擴展程式,該擴展的主要功能是“Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.”。

擴展截圖

screenshot

下載BETTER SEC EDGAR FOR CHROME USER擴展crx文件

下載BETTER SEC EDGAR FOR CHROME USER擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is created for two purposes:
1) Filings we have visited in SEC EDGAR will be labeled with blue background.
2) Always Open a SEC filing in a new tab.

Chrome doesn't support some CSS property for "a:visited" due to security reasons. So I create this extension to label visited links with blue background.

In addition, we usually need to read multiple filings in SEC EDGAR. So it'll be more convenient if those links automatically open a new tab.

PS: This extension will only affect links in SEC EDGAR.                    

擴展基本資訊

名稱 BETTER SEC EDGAR FOR CHROME USER BETTER SEC EDGAR FOR CHROME USER
ID oclmcmkolphhhmkledokffbgjmehhajg
官方網址 https://chromewebstore.google.com/detail/better-sec-edgar-for-chro/oclmcmkolphhhmkledokffbgjmehhajg
簡介 Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.
檔案大小 42.35 KB
安裝次數 48
目前版本 0.1
更新時間 2015-02-11
上架時間 2015-02-11
評分 5.00/5 共 1 次評分
開發者 Tim Zhuang
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BETTER SEC EDGAR FOR CHROME USER",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.",
    "homepage_url": "http:\/www.flymemory.com",
    "author": "Tim",
    "icons": {
        "16": "bettersec.png",
        "48": "bettersec.png",
        "128": "bettersec.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.sec.gov\/*",
                "*:\/\/sec.gov\/*"
            ],
            "css": [
                "sec.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "sec.js"
            ],
            "run_at": "document_start"
        }
    ]
}