GitHub Pocket
Read It Later for GitHub
What is GitHub Pocket?
GitHub Pocket is a Chrome extension developed by David Pavlík, and its main feature is "Read It Later for GitHub".
Extension Screenshots
Download GitHub Pocket Extension CRX File
Download GitHub Pocket extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | GitHub Pocket |
ID | cfkoiggmhiohdhpkcpinclakhcodmdal |
Official URL | https://chromewebstore.google.com/detail/github-pocket/cfkoiggmhiohdhpkcpinclakhcodmdal |
Description | Read It Later for GitHub |
File Size | 49.72 KB |
Installation Count | 42 |
Current Version | 0.1.0 |
Last Updated | 2017-02-01 |
Publish Date | 2017-02-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | David Pavlík |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/egoist/github-pocket |
Supported Languages | 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" ] } ] } |