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.」です。
拡張機能のスクリーンショット
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 |
ID | oclmcmkolphhhmkledokffbgjmehhajg |
公式URL | 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" } ] } |