Twitter Note
Take notes about them.
Vad är Twitter Note?
Twitter Note är en Chrome-tillägg utvecklad av https://emrecoban.com.tr, och dess huvudfunktion är "Take notes about them.".
Tilläggsskärmbilder
Ladda ner Twitter Note-förlängningens CRX-fil
Ladda ner Twitter Note-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | hkgdpppefidcddecmcchdkplfgjkjcdk |
| Officiell webbadress | https://chromewebstore.google.com/detail/twitter-note/hkgdpppefidcddecmcchdkplfgjkjcdk |
| Beskrivning | Take notes about them. |
| Filstorlek | 615 KB |
| Antal Installationer | 43 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2022-12-21 |
| Publiceringsdatum | 2022-12-18 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | https://emrecoban.com.tr |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/emrecoban/twitterNote |
| Hjälpsida URL | https://github.com/emrecoban/twitterNote/issues |
| Stödda Språk | 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"
}
} | |