SnooNotes
Usernotes plus a whole lot more!
Was ist SnooNotes?
SnooNotes ist eine Chrome-Erweiterung, die von https://snoonotes.com entwickelt wurde, und ihr Hauptmerkmal ist "Usernotes plus a whole lot more!".
Erweiterungsscreenshots
SnooNotes-Erweiterungs-CRX-Datei herunterladen
Laden Sie SnooNotes-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
A server backed, user notes system for reddit moderators. A good replacement if you run out of mod toolbox notes! Also integrates with layer7 tooling (https://layer7.solutions) to provide removal reasons and channel banning through the native reddit UI.
Grundlegende Informationen zur Erweiterung
Name | |
ID | lfoenkalfeojpdlgiccblfbjcjpanneg |
Offizielle URL | https://chrome.google.com/webstore/detail/snoonotes/lfoenkalfeojpdlgiccblfbjcjpanneg |
Beschreibung | Usernotes plus a whole lot more! |
Dateigröße | 476 KB |
Installationsanzahl | 773 |
Aktuelle Version | 2.6.0 |
Letztes Update | 2020-05-22 |
Veröffentlichungsdatum | 2020-05-22 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://snoonotes.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SnooNotes", "description": "Usernotes plus a whole lot more!", "version": "2.6.0", "manifest_version": 2, "background": { "scripts": [ "scripts\/background.js" ] }, "web_accessible_resources": [ "fonts\/*.woff2" ], "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false }, { "matches": [ "https:\/\/snoonotes.com\/Auth\/redux*" ], "js": [ "scripts\/signinCallback.js" ], "all_frames": true } ], "externally_connectable": { "ids": [] }, "permissions": [ "storage", "http:\/\/fonts.googleapis.com\/", "https:\/\/fonts.googleapis.com\/", "https:\/\/*.reddit.com\/*", "https:\/\/*.snoonotes.com\/*" ] } |