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.

Cos'è BETTER SEC EDGAR FOR CHROME USER?

BETTER SEC EDGAR FOR CHROME USER è un'estensione di Chrome sviluppata da Tim Zhuang, e la sua funzione principale è "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BETTER SEC EDGAR FOR CHROME USER

Scarica i file di estensione BETTER SEC EDGAR FOR CHROME USER in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome BETTER SEC EDGAR FOR CHROME USER BETTER SEC EDGAR FOR CHROME USER
ID oclmcmkolphhhmkledokffbgjmehhajg
URL Ufficiale https://chromewebstore.google.com/detail/better-sec-edgar-for-chro/oclmcmkolphhhmkledokffbgjmehhajg
Descrizione Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.
Dimensione del File 42.35 KB
Conteggio Installazioni 48
Versione Corrente 0.1
Ultimo Aggiornamento 2015-02-11
Data di Pubblicazione 2015-02-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Tim Zhuang
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}