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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": []
        }
    ]
}