Twitter Note
Take notes about them.
¿Qué es Twitter Note?
Twitter Note es una extensión de Chrome desarrollada por https://emrecoban.com.tr, y su función principal es "Take notes about them.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitter Note
Descarga archivos de extensión Twitter Note en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Twitter Note is an open-source MIT-licensed Chrome and Brave browser extension that helps you to take notes about the people who you blocked, or muted on their profile page. To take a note, also you don't have to block, or mute them. Features Take a note (limitless characters) about someone. Delete all the notes with one click. See all the notes. Issues, Feedback, and Contributing Go to the GitHub repository: https://github.com/emrecoban/twitterNote
Información Básica de la Extensión
Nombre | Twitter Note |
ID | hkgdpppefidcddecmcchdkplfgjkjcdk |
URL Oficial | https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk |
Descripción | Take notes about them. |
Tamaño del Archivo | 615 KB |
Cantidad de Instalaciones | 43 |
Versión Actual | 1.0 |
Última Actualización | 2022-12-21 |
Fecha de Publicación | 2022-12-18 |
Calificación | 5.00/5 Total de 4 Calificaciones |
Desarrollador | https://emrecoban.com.tr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/emrecoban/twitterNote |
URL de la Página de Ayuda | https://github.com/emrecoban/twitterNote/issues |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitter Note", "description": "Take notes about them.", "version": "1.0", "action": { "default_popup": ".\/popup\/popup.html", "default_icon": ".\/images\/twitterNote.png" }, "content_scripts": [ { "css": [ ".\/scripts\/contentStyle.css" ], "js": [ ".\/scripts\/content.js" ], "matches": [ "https:\/\/*.twitter.com\/*" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "icons": { "16": ".\/images\/twitterNote.png", "32": ".\/images\/twitterNote.png", "48": ".\/images\/twitterNote.png", "128": ".\/images\/twitterNote.png" } } |