Bytez

Arxiv.org PDFs are now interactive. This extension makes papers interactive by opening arxiv.org pdfs in the Bytez SmartReader…

Bytez क्या है?

Bytez http://bytez.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Arxiv.org PDFs are now interactive. This extension makes papers interactive by opening arxiv.org pdfs in the Bytez SmartReader…"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Bytez एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Arxiv.org PDFs are now interactive. 

This extension makes papers interactive by opening arxiv.org pdfs in the Bytez SmartReader instead of Adobe Reader.


Who this is for:
The extension is for data scientists and machine learning researchers / practitioners.


How it works:
When you're surfing the web and click a link to open a pdf hosted on the https://arxiv.org domain, this extension will check if the pdf is a machine learning paper. If it is, the extension will then open the pdf in the Smart Reader, instead of Adobe Reader. 


Permissions required: 
The extension needs one permission (declarativeNetRequest) to redirect "*://arxiv.org/pdf/*" to the Bytez reader. Chrome will warn you that the extension can "Block content on any page you visit". In this case, the warning is inaccurate, since the extension is scoped to "*://arxiv.org/pdf/*". The extension follows Chrome's best practices and is open source (https://github.com/Bytez-com/extension); allowing you, and everyone else, to contribute and see what's under the hood :)


We hope you love interactive papers 🖖🚀                    

एक्सटेंशन की मूल जानकारी

नाम Bytez Bytez
ID bpmfhekkemkklhccdjkeokildopbneni
आधिकारिक URL https://chrome.google.com/webstore/detail/bytez/bpmfhekkemkklhccdjkeokildopbneni
विवरण Arxiv.org PDFs are now interactive. This extension makes papers interactive by opening arxiv.org pdfs in the Bytez SmartReader…
फ़ाइल का आकार 2.21 MB
स्थापना संख्या 35
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2021-03-23
प्रकाशन तिथि 2019-12-28
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर http://bytez.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://bytez.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Bytez",
    "name": "Bytez",
    "version": "2.0.0",
    "icons": {
        "750": "rocket-circle-purple.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Settings"
    },
    "background": {
        "service_worker": "background.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/bytez.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    },
    "permissions": [
        "alarms",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "*:\/\/arxiv.org\/pdf\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "white_list",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "rules.json"
            ],
            "matches": []
        }
    ]
}