Code Monkey home page Code Monkey logo

hackertagger's Introduction

HackerTagger

This is a chrome extension which adds a user tagging feature to Hacker News (news.ycombinator.com). You can specify a tag for a user and then that tag will appear next to their username in comments and posts.

Notes

  • The tags are specified in a JSON block that you can edit by clicking the extension tile
    • The JSON block is totally freeform - the code only looks for specific fields - which allows you to add any sort of other data (basiclly any sort of notes)
  • The tags are saved in chrome sync storage (if you have that enabled) so they'll automatically show up on all chromes you're logged in to

Schema

Below is the format the extension expects:

{
    "USERNAME1":{
        "tag": "TAG_TEXT"
    },
    "USERNAME2":{
        "tag": "TAG_TEXT2"
    },
}

However, this is also a fully valid block that will be saved and loaded (although only Alice and Eve will be tagged):

{
    "Alice": {
        "tag": "git genius",
        "note": "very friendly!"
    },
    "Bob": {
        "projects": "example.com"
    },
    "Carol": {},
    "Eve": {
        "tag": "eavesdropper",
        "favorite_number": 22,
        "cool_projects": [
            "example.com",
            "example.com"
        ]
    }
}

hackertagger's People

Contributors

toneyalexander avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.