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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Stops ECCC from downloading PDFs when they can be opened in the browser. Also fixes a bug during submission."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ECCC Fixes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}