This is a browser extension to watch Scrapbox pages.
This tab shows links to recently updated pages of specified projects.
This tab shows links to unread pages that were updated after you had visited.
To watch Scrapbox Enterprise, configure src/manifest.json
and src/settings.js
.
{
...
"permissions": [
"https://scrapbox.io/*/*",
"https://YOUR-HOST/*/*",
"contextMenus",
"storage",
"cookies"
],
...
"content_scripts": [
{
"matches": [
"https://scrapbox.io/*",
"https://YOUR-HOST/*"
],
...
}
],
}
class Settings {
constructor(settings) {
...
this.sites = settings.sites || [
{baseUrl: 'https://scrapbox.io', projects: []},
{baseUrl: 'https://YOUR-HOST', projects: []}
];
...
}
...
};
To install, use Load unpacked extension
.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT