Twitter Note
Take notes about them.
Cos'è Twitter Note?
Twitter Note è un'estensione di Chrome sviluppata da https://emrecoban.com.tr, e la sua funzione principale è "Take notes about them.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter Note
Scarica i file di estensione Twitter Note in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Twitter Note |
ID | hkgdpppefidcddecmcchdkplfgjkjcdk |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk |
Descrizione | Take notes about them. |
Dimensione del File | 615 KB |
Conteggio Installazioni | 43 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-12-21 |
Data di Pubblicazione | 2022-12-18 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | https://emrecoban.com.tr |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/emrecoban/twitterNote |
URL della Pagina di Aiuto | https://github.com/emrecoban/twitterNote/issues |
Lingue Supportate | 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" } } |