Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

This is a browser extension to watch scrapbox pages.

License

Notifications You must be signed in to change notification settings

ohtomi/scrapbox-recent-pages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scrapbox-recent-pages

This is a browser extension to watch Scrapbox pages.

Usage

Recent Pages

This tab shows links to recently updated pages of specified projects.

Watch Pages

This tab shows links to unread pages that were updated after you had visited.

Scrapbox Enterprise

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: []}
        ];
        ...
    }
    ...
};

Install

To install, use Load unpacked extension.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT

Author

Kenichi Ohtomi

About

This is a browser extension to watch scrapbox pages.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published