tldr.chrome
Summarize any text
Wat is tldr.chrome?
tldr.chrome is een Chrome-extensie ontwikkeld door ignatif, en de belangrijkste functie is "Summarize any text".
Extensie Screenshots
Download het CRX-bestand van de extensie tldr.chrome
Download tldr.chrome-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | tldr.chrome |
ID | khkpnmmnkenbelkljphmpbjgbmobgonn |
Officiële URL | https://chromewebstore.google.com/detail/tldrchrome/khkpnmmnkenbelkljphmpbjgbmobgonn |
Beschrijving | Summarize any text |
Bestandsgrootte | 332 KB |
Aantal Installaties | 140 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2021-10-15 |
Publicatiedatum | 2021-08-25 |
Beoordeling | 3.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | ignatif |
[email protected] | |
Betalingswijze | in_app |
Ondersteunde Talen | 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\/*" ] } |