SnooNotes
Usernotes plus a whole lot more!
What is SnooNotes?
SnooNotes is a Chrome extension developed by https://snoonotes.com, and its main feature is "Usernotes plus a whole lot more!".
Extension Screenshots
Download SnooNotes Extension CRX File
Download SnooNotes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | lfoenkalfeojpdlgiccblfbjcjpanneg |
Official URL | https://chrome.google.com/webstore/detail/snoonotes/lfoenkalfeojpdlgiccblfbjcjpanneg |
Description | Usernotes plus a whole lot more! |
File Size | 476 KB |
Installation Count | 773 |
Current Version | 2.6.0 |
Last Updated | 2020-05-22 |
Publish Date | 2020-05-22 |
Rating | 4.00/5 Total 4 Ratings |
Developer | https://snoonotes.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |