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é es BETTER SEC EDGAR FOR CHROME USER?
BETTER SEC EDGAR FOR CHROME USER es una extensión de Chrome desarrollada por Tim Zhuang, y su función principal es "Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BETTER SEC EDGAR FOR CHROME USER
Descarga archivos de extensión BETTER SEC EDGAR FOR CHROME USER en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | BETTER SEC EDGAR FOR CHROME USER |
ID | oclmcmkolphhhmkledokffbgjmehhajg |
URL Oficial | https://chromewebstore.google.com/detail/better-sec-edgar-for-chro/oclmcmkolphhhmkledokffbgjmehhajg |
Descripción | Visited links in SEC EDGAR will have blue background color. And links will be opened in a new tab. |
Tamaño del Archivo | 42.35 KB |
Cantidad de Instalaciones | 48 |
Versión Actual | 0.1 |
Última Actualización | 2015-02-11 |
Fecha de Publicación | 2015-02-11 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Tim Zhuang |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |