tldr.chrome
Summarize any text
What is tldr.chrome?
tldr.chrome is a Chrome extension developed by ignatif, and its main feature is "Summarize any text".
Extension Screenshots
Download tldr.chrome Extension CRX File
Download tldr.chrome 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
This extension uses DistilBERT model trained on CNN news dataset to produce text summaries 1. Select text 2. Double hit "Enter" 3. Get text summary
Extension Basic Information
Name | tldr.chrome |
ID | khkpnmmnkenbelkljphmpbjgbmobgonn |
Official URL | https://chromewebstore.google.com/detail/tldrchrome/khkpnmmnkenbelkljphmpbjgbmobgonn |
Description | Summarize any text |
File Size | 332 KB |
Installation Count | 140 |
Current Version | 0.2 |
Last Updated | 2021-10-15 |
Publish Date | 2021-08-25 |
Rating | 3.00/5 Total 1 Ratings |
Developer | ignatif |
[email protected] | |
Payment Type | in_app |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tldr.chrome", "description": "Summarize any text", "version": "0.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "icons": { "256": "logo\/logo.png" }, "permissions": [ "identity", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "tldr.css" ], "js": [ "tldr.js" ] }, { "matches": [ "http:\/\/localhost:4000\/tldr\/payment\/success", "https:\/\/www.ignatif.me\/tldr\/payment\/success" ], "js": [ "payment_success.js" ] } ], "oauth2": { "client_id": "50503379753-ppcd44vk846li1je5cpk096ul9k9nau7.apps.googleusercontent.com", "scopes": [ "openid" ] }, "action": { "default_icon": "logo\/logo.png", "default_title": "tl;dr chrome", "default_popup": ".\/build\/index.html" }, "host_permissions": [ "https:\/\/ignatif.me\/*" ] } |