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."입니다.

확장 프로그램 스크린샷

screenshot

BETTER SEC EDGAR FOR CHROME USER 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
        }
    ]
}