Userscript
Advanced Features
You should not load untrustworthy scripts or scripts whose content you do not understand.
UserScript can also be used to delete pages and send the contents of the project to external parties.
If you know some coding, you can customize Cosense by adding style.css and script.js Code blocks to your Profile page. After adding or updating script, reload the page and you should see a message to Load new user script.
Note: Customization will only be visible to you.
Example:
Add a Google Translate Button (EN --> JA)
code:script.js
scrapbox.PopupMenu.addButton({
title: 'Translate',
onClick: text => window.open(https://translate.google.com/#en/ja/${text})
})