GitHub Pocket
Read It Later for GitHub
什麼是GitHub Pocket?
GitHub Pocket是由David Pavlík開發的Chrome擴展程式,該擴展的主要功能是“Read It Later for GitHub”。
擴展截圖
下載GitHub Pocket擴展crx文件
下載GitHub Pocket擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Ahhhhh, sometimes I don't want to star a repo and I just have no time to know if it's really interesting, but it looks it is! I don't want to miss good stuff either. So I just add it to Pocket and read it later! 擴展基本資訊
| 名稱 | |
| ID | cfkoiggmhiohdhpkcpinclakhcodmdal |
| 官方網址 | https://chromewebstore.google.com/detail/github-pocket/cfkoiggmhiohdhpkcpinclakhcodmdal |
| 簡介 | Read It Later for GitHub |
| 檔案大小 | 49.72 KB |
| 安裝次數 | 42 |
| 目前版本 | 0.1.0 |
| 更新時間 | 2017-02-01 |
| 上架時間 | 2017-02-01 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | David Pavlík |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/egoist/github-pocket |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Read It Later for GitHub",
"manifest_version": 2,
"name": "GitHub Pocket",
"offline_enabled": true,
"version": "0.1.0",
"icons": {
"128": "img\/icon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"storage"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"js\/vue.js",
"js\/main.js"
],
"css": [
"css\/main.css"
]
}
]
} | |