npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@io-monad/textlint-chrome-extension

v2.1.1

Published

textlint Chrome Extension

Downloads

5

Readme

textlint Chrome Extension

wercker status GitHub license semantic-release

Chrome Extension that proofreads <textarea> using textlint.

:construction: Work In Progress!

:rocket: The extension experimentally supports Firefox (WebExtensions) and Opera. Check out the "Experimental support" section for more details.

How to build

$ npm install
$ npm run build

To test the built extension, load dist/chrome directory into Chrome.

Tasks

Watch build

Watch file changes and build it continuously.

$ npm run watch

Pack

Produce a production-packaged zip in packages directory.

$ npm run pack

Release

Versioning and release flow is automated by semantic-release.

  • For each push on master branch, CI will execute semantic-release after all tests passed.
  • Automatically determines the version of a release. version field in both package.json and manifest.json will be set at the release time.
  • Automatically creates a git release with a release note that is auto-generated by commit messages.
  • Automatically uploads a zip file to Chrome Web Store.

Experimental support

This extension can also work on browsers implementing Chrome-compatible extension API, such as Firefox and Opera.

Please note that we take Chrome as the main target of this project and thus some features may not work properly on other browsers.

How to build

$ gulp build --vendor=moz    // for Firefox
$ gulp build --vendor=opera  // for Opera

Installation

For Firefox, please make sure you have Firefox 45 or higher, and follow the instructions at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Packaging_and_installation to load dist/moz directory.

For Opera, please follow the instructions at https://dev.opera.com/extensions/testing/ to load dist/opera directory.

Limitations

Due to the incompatibilities with Chrome's original extension API, there are some limitations on features. These limitations may go away if API supports on browsers are improved.

Firefox

  • User selections in the popup panel will not be remembered. (Due to Bug 1258139)
  • Custom rule settings will not work. (Due to Bug 1258139)
  • Icons in result tooltips will not be shown properly. (Due to Bug 1207394)
  • All configurations will not be synced. (Due to Bug 1220494)
  • textlint processes will not be run in a sandbox. (i.e. there is no protection around rule executions.)

Opera

None.

License

This software is licensed under GNU GPLv3. See LICENSE for full text of the license.

Before version 2.0.0, this extension was licensed under The MIT License. Since this extension started to bundle some GPLv3 plugins, I decided to re-license the extension under GPLv3.