ECCC Fixes

Stops ECCC from downloading PDFs when they can be opened in the browser. Also fixes a bug during submission.

ECCC Fixes란 무엇입니까?

ECCC Fixes은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stops ECCC from downloading PDFs when they can be opened in the browser. Also fixes a bug during submission."입니다.

확장 프로그램 스크린샷

screenshot

ECCC Fixes 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This add-on's primary purpose is to let your browser display ECCC PDFs instead of being forced to download them. As of version 2.0, it has a secondary purpose, fixing a bug in the submission page. More details are given below.

The add-on kicks in when the user requests a report from ECCC (i.e. when the user goes to any URL of the form https://eccc.weizmann.ac.il/report/*/download/).

The add-on then intercepts the response from the server, which asks the browser to download a pdf file, and changes it so that the browser is now requested to open the pdf file.

Version 2.0 Update: There was a bug in the submission process that caused you to restart your submission. The extension now fixes that bug to the best of my knowledge. Details available with source code at https://github.com/suhailsherif/eccc-fixes.                    

확장 프로그램 기본 정보

이름 ECCC Fixes ECCC Fixes
ID lnifepjecfiflmicmonkioobagcnfehf
공식 URL https://chromewebstore.google.com/detail/eccc-fixes/lnifepjecfiflmicmonkioobagcnfehf
설명 Stops ECCC from downloading PDFs when they can be opened in the browser. Also fixes a bug during submission.
파일 크기 57.33 KB
설치 횟수 81
현재 버전 2.0
최근 업데이트 2019-09-24
출시 날짜 2019-09-24
평점 5.00/5 총 5 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/suhailsherif/eccc-fixes
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Stops ECCC from downloading PDFs when they can be opened in the browser. Also fixes a bug during submission.",
    "manifest_version": 2,
    "name": "ECCC Fixes",
    "version": "2.0",
    "page_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "96": "icons\/96.png",
            "128": "icons\/128.png"
        }
    },
    "icons": {
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/eccc.weizmann.ac.il\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/eccc.weizmann.ac.il\/submit\/paper\/"
            ],
            "js": [
                "submissioninjection.js"
            ]
        }
    ]
}