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.
O que é BETTER SEC EDGAR FOR CHROME USER?
BETTER SEC EDGAR FOR CHROME USER é uma extensão do Chrome desenvolvida por Tim Zhuang, e sua principal característica é "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BETTER SEC EDGAR FOR CHROME USER
Baixe arquivos de extensão BETTER SEC EDGAR FOR CHROME USER no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | BETTER SEC EDGAR FOR CHROME USER |
ID | oclmcmkolphhhmkledokffbgjmehhajg |
URL Oficial | https://chromewebstore.google.com/detail/better-sec-edgar-for-chro/oclmcmkolphhhmkledokffbgjmehhajg |
Descrição | Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab. |
Tamanho do Arquivo | 42.35 KB |
Contagem de Instalações | 48 |
Versão Atual | 0.1 |
Última Atualização | 2015-02-11 |
Data de Publicação | 2015-02-11 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Tim Zhuang |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |