SnooNotes
Usernotes plus a whole lot more!
Cos'è SnooNotes?
SnooNotes è un'estensione di Chrome sviluppata da https://snoonotes.com, e la sua funzione principale è "Usernotes plus a whole lot more!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SnooNotes
Scarica i file di estensione SnooNotes 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | lfoenkalfeojpdlgiccblfbjcjpanneg |
URL Ufficiale | https://chrome.google.com/webstore/detail/snoonotes/lfoenkalfeojpdlgiccblfbjcjpanneg |
Descrizione | Usernotes plus a whole lot more! |
Dimensione del File | 476 KB |
Conteggio Installazioni | 773 |
Versione Corrente | 2.6.0 |
Ultimo Aggiornamento | 2020-05-22 |
Data di Pubblicazione | 2020-05-22 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | https://snoonotes.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |