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

@jswork/next-gm-api

v1.0.4

Published

APIs for tampermonkey.

Downloads

32

Readme

next-gm-api

APIs for tampermonkey.

version license size download

installation

npm install -S @jswork/next-gm-api

apis

| api | description | |---------------------------|--------------------| | gets | Get all the apis. | | addStyle | From tampermonkey. | | deleteValue | From tampermonkey. | | listValues | From tampermonkey. | | addValueChangeListener | From tampermonkey. | | removeValueChangeListener | From tampermonkey. | | setValue | From tampermonkey. | | getValue | From tampermonkey. | | log | From tampermonkey. | | getResourceText | From tampermonkey. | | getResourceURL | From tampermonkey. | | registerMenuCommand | From tampermonkey. | | unregisterMenuCommand | From tampermonkey. | | openInTab | From tampermonkey. | | xmlhttpRequest | From tampermonkey. | | download | From tampermonkey. | | getTab | From tampermonkey. | | saveTab | From tampermonkey. | | getTabs | From tampermonkey. | | notification | From tampermonkey. | | setClipboard | From tampermonkey. | | info | From tampermonkey. | | cookie | From tampermonkey. |

usage

// @grant GM_addStyle
// @grant GM_deleteValue
// @grant GM_listValues
// @grant GM_addValueChangeListener
// @grant GM_removeValueChangeListener
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_log
// @grant GM_getResourceText
// @grant GM_getResourceURL
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_openInTab
// @grant GM_xmlhttpRequest
// @grant GM_download
// @grant GM_getTab
// @grant GM_saveTab
// @grant GM_getTabs
// @grant GM_notification
// @grant GM_setClipboard
// @grant GM_info
// @grant GM_cookie

import NxGmApi from '@feizheng/next-gm-api';

NxGmApi.log('hello From tampermonkey.~');

resources

  • https://www.From tampermonkey..net/documentation.php

license

Code released under the MIT license.