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.

Qu'est-ce que BETTER SEC EDGAR FOR CHROME USER ?

BETTER SEC EDGAR FOR CHROME USER est une extension Chrome développée par Tim Zhuang, et sa fonction principale est "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BETTER SEC EDGAR FOR CHROME USER

Téléchargez les fichiers d'extension BETTER SEC EDGAR FOR CHROME USER au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom BETTER SEC EDGAR FOR CHROME USER BETTER SEC EDGAR FOR CHROME USER
ID oclmcmkolphhhmkledokffbgjmehhajg
URL Officiel https://chromewebstore.google.com/detail/better-sec-edgar-for-chro/oclmcmkolphhhmkledokffbgjmehhajg
Description Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.
Taille du Fichier 42.35 KB
Nombre d'Installations 48
Version Actuelle 0.1
Dernière Mise à Jour 2015-02-11
Date de Publication 2015-02-11
Évaluation 5.00/5 Total 1 Évaluations
Développeur Tim Zhuang
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}