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文件

下載Bytez擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": []
        }
    ]
}