Twitter Note
Take notes about them.
Was ist Twitter Note?
Twitter Note ist eine Chrome-Erweiterung, die von https://emrecoban.com.tr entwickelt wurde, und ihr Hauptmerkmal ist "Take notes about them.".
Erweiterungsscreenshots
Twitter Note-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitter Note-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hkgdpppefidcddecmcchdkplfgjkjcdk |
| Offizielle URL | https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk |
| Beschreibung | Take notes about them. |
| Dateigröße | 615 KB |
| Installationsanzahl | 43 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2022-12-21 |
| Veröffentlichungsdatum | 2022-12-18 |
| Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
| Entwickler | https://emrecoban.com.tr |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/emrecoban/twitterNote |
| Hilfeseite URL | https://github.com/emrecoban/twitterNote/issues |
| Unterstützte Sprachen | 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"
}
} | |