Cownter App


Cownter is a service that allows website visitors to see how many people are currently looking at different pages within the site. When a visitor mouses over a LINK, a small bubble pops up telling them how many people are currently on that page.

With Cownter, visitors can quickly tell how many people are reading a particular article on a news site or how many people are looking at a product on a shopping site.

Website owners can put this powerful service to work with very little effort. They just include a JavaScript snippet on every page of the site, and our service does everything else. Owners will be able to look at their statistics and even automatically rearange links based on how many people are looking at them.

Cownter also offers website visitors the ability to toggle the cownter bubbles on and off by clicking on the cownter button: cownt.us Cownter Button

Cowrate App


Cowrate is a service that allows website visitors to rate pages within the site. A bubble shows up on the bottom right corner of each page with the current rating and thumbs up and down buttons.

This simple interface collects information about which pages visitors liked. The website owner just includes a JavaScript snippet on every page of the site, and our service does everything else. Owners can assign pages to categories and give them names. Ratings for each category of pages can then be shown with a widget or by using our API. This offers an easy implementation of features similar to Digg or Reddit.

Cowrate also offers website visitors the ability to toggle the cowrate bubble on and off by clicking on the cowrate button: cownt.us Cowrate Button

How Do I Implement Them?


If you are a website owner and have access to the html, implementation is very simple.

1. Register or Log In

Required (letters numbers dashes and underscores only)
Required
Required (We keep it private)
Required (ex: google.com)
   

2. Insert JavaScript into html

Insert the following javascript at the bottom of your html, near the </body> tag on all the pages you want tracked. The bubbleState signifies the default state of the bubbles (ON or OFF). The title is optional and is taken from the page title if not filled in. Please make sure your token shows up.

Cownter:
<script language="JavaScript" type="text/javascript">
    window.cowntus_token="";
    window.cownter_bubbleState="ON";
    window.cownter_title="";
</script>
<script language="JavaScript" type="text/javascript" src="http://cownt.us/cownter.js"></script>
Cowrate:
Please make sure you fill in your token and the category of the page. You would be able to compare pages within the same category.
<script language="JavaScript" type="text/javascript">
    window.cowntus_token="";
    window.cowrate_title="";
    window.cowrate_category="";
    window.cowrate_bubbleState="ON";
</script>
<script language="JavaScript" type="text/javascript" src="http://cownt.us/cowrate.js"></script>

3. To show the buttons

Optionally, insert the following image tag anywhere you want to place the on/off button. The button allows website visitors to toggle the bubbles on and off.

Cownter:
<img id="cownterState" onclick="CownterBubbleToggle(event, this)" 
border="0" src="http://cownt.us/images/cownter-on.png" alt="cownt.us Cownter Button">
Cowrate:
<img id="cowrateState" onclick="CowrateBubbleToggle(event, this)"
border="0" src="http://cownt.us/images/cowrate-on.png" alt="cownt.us Cowrate Button">