{"id":25188692,"url":"https://github.com/dineshdb/readlater","last_synced_at":"2025-06-22T09:36:21.144Z","repository":{"id":274853466,"uuid":"924281056","full_name":"dineshdb/readlater","owner":"dineshdb","description":"readlater:// protocol handler and webextensions","archived":false,"fork":false,"pushed_at":"2025-02-26T20:27:58.000Z","size":109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T10:14:46.643Z","etag":null,"topics":["getpocket","read-later","readlater"],"latest_commit_sha":null,"homepage":"http://dbhattarai.info.np/readlater/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dineshdb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":"FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"ko_fi":"dineshdb"}},"created_at":"2025-01-29T18:19:33.000Z","updated_at":"2025-02-26T20:28:02.000Z","dependencies_parsed_at":"2025-02-24T06:20:53.907Z","dependency_job_id":"a9fd26b5-ebd9-4338-a297-503cc3e0becc","html_url":"https://github.com/dineshdb/readlater","commit_stats":null,"previous_names":["dineshdb/getpocket","dineshdb/readlater"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dineshdb/readlater","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dineshdb%2Freadlater","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dineshdb%2Freadlater/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dineshdb%2Freadlater/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dineshdb%2Freadlater/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dineshdb","download_url":"https://codeload.github.com/dineshdb/readlater/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dineshdb%2Freadlater/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261271689,"owners_count":23133782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["getpocket","read-later","readlater"],"created_at":"2025-02-09T20:29:48.015Z","updated_at":"2025-06-22T09:36:16.130Z","avatar_url":"https://github.com/dineshdb.png","language":"Rust","funding_links":["https://ko-fi.com/dineshdb"],"categories":[],"sub_categories":[],"readme":"# ![readlater:// logo](webext/icons/icon-gray-128.png \"Logo\")\n\n\u003e readlater://save?url=https://example.org\u0026tags\n\nA protocol handler that will save any articles it receives to getpocket.\n\n## Supported Features\n\nThis supports handling `readlater://save?url=\u003curl\u003e\u0026title=\u003ctitle\u003e\u0026tags=\u003ctags\u003e`\nwithout installing web extension. If you install the\n[webextension](https://addons.mozilla.org/en-US/firefox/addon/read_later/), it\nprovides additional features such as:\n\n- toolbar button to save current url to pocket by clicking it.\n\nAlternatively, you can use bookmarket to add items to the getpocket. Or just\npaste properly formatted link to url bar.\n\n## Setup\n\n- Install the binary `cargo install --git https://github.com/dineshdb/readlater`\n- Register protocol handler and WebExtension native-host `readlater register`\n- Provide Pocket authentication `POCKET_CONSUMER_KEY`, `POCKET_ACCESS_TOKEN` via\n  env variable.\n\n## Test\n\nVisit the [hosted version of this page](https://dbhattarai.info.np/readlater/)\nand then click\n[this link](readlater://save?url=https://github.com/dineshdb/readlater) to add\nthe this repo url to pocket using `readlater://`.\n\n## Bookmarklet\n\n```javascript\njavascript: (function () {\n  var currentUrl = encodeURIComponent(window.location.href);\n  var tags = prompt(\"Enter tags (comma-separated):\", \"\");\n  if (tags !== null) {\n    var encodedTags = encodeURIComponent(tags);\n    var url = `readlater://save?url=${currentUrl}\u0026tags=${encodedTags}`;\n    window.location.href = url;\n  }\n})();\n```\n\n## Roadmap\n\n- Protocol Handler\n- Native Host and Protocol handler\n  - [x] Linux protocol handler for\n        `readlater://save?url=\u003curl\u003e\u0026title=\u003ctitle\u003e\u0026tags=\u003ctags\u003e`\n  - [x] Save new urls to Pocket\n  - Save links to pocket even when offline\n    - [x] Local cache of remote data\n    - [ ] Queue of save actions and background sync\n  - [ ] Tag imdb links as watchlater\n  - [ ] Tag archived imdb links as watched\n  - [ ] Tag youtube links as watchlater\n- WebExtension\n  - [x] Add a `readlater://` button that saves current tab pocket\n  - [x] Release the web extension\n  - [x] Change toolbar icon based on result\n  - [x] Firefox(on Linux) Support\n  - [x] Keyboard shortcut (`Ctrl+Shift+L`)\n  - [ ] SideView with local cached data\n  - [ ] Add browser bookmarks to pocket with #bookmark tag\n  - [ ] Insert `readlater://` links in web pages for easier saving to\n        `readlater://`\n  - [ ] Support for Chrome and Chromium based browsers\n- CI\n  - [x] Tests\n  - [ ] Release Binaries on Github packages\n  - [ ] Add a install script\n- [ ] Decouple it from Pocket and make it pluggable.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdineshdb%2Freadlater","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdineshdb%2Freadlater","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdineshdb%2Freadlater/lists"}