Github PRs viewer
Check your open/assigned pull requests without opening Github
什麼是Github PRs viewer?
Github PRs viewer是由tomas.shrewsbury開發的Chrome擴展程式,該擴展的主要功能是“Check your open/assigned pull requests without opening Github”。
擴展截圖
下載Github PRs viewer擴展crx文件
下載Github PRs viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Permite ver PRs de Github de una manera mucho mas comoda y rapida!                     擴展基本資訊
| 名稱 |   |  
| ID | fcggaaokidkfpkhjflegbbjpojnkhelc | 
| 官方網址 | https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc | 
| 簡介 | Check your open/assigned pull requests without opening Github | 
| 檔案大小 | 3.48 MB | 
| 安裝次數 | 25 | 
| 目前版本 | 2.0.3 | 
| 更新時間 | 2020-05-18 | 
| 上架時間 | 2020-05-18 | 
| 評分 | 5.00/5 共 3 次評分 | 
| 開發者 | tomas.shrewsbury | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 隱私政策頁面URL | https://candidates.flycricket.io/privacy.html | 
| 支援的語言 | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github PRs viewer",
    "short_name": "Github PRs",
    "version": "2.0.3",
    "description": "Check your open\/assigned pull requests without opening Github",
    "author": "Tomas Shrewsbury",
    "icons": {
        "64": "icons\/icon-logo.png",
        "128": "icons\/icon-logo.png"
    },
    "browser_action": {
        "default_title": "Github Buddy",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            ".\/oauth2\/oauth2.js",
            ".\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/robots.txt*"
            ],
            "js": [
                ".\/oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/login\/oauth\/access_token",
        "idle",
        "notifications",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "oauth2\/oauth2.html"
    ]
}  |  |