Bubble Buddy

A handful of useful utilities for http://www.bubblews.com/

Τι είναι το Bubble Buddy;

Το Bubble Buddy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Will, και η κύρια λειτουργία του είναι "A handful of useful utilities for http://www.bubblews.com/".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Bubble Buddy

Λήψη αρχείων επέκτασης Bubble Buddy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension will offer utilities to assist members of the site Bubblews at http://www.bubblews.com/.  

New Updates in 1.4
--------------------
 * Creation of a stats page which provides a top list, the ability to save your database, import an existing database or reset the counts.


Currently Available Tools
-----------------
Post Counter
  Simply counts the number of characters on the submit when submitting a new post.  It shows three stats: The number of any character, the number of estimated words and the number of alphanumeric characters only.  It will highlight the last field in blue when the minimum character count has been reached (currently 400).

Notification Monitor
  This will watch your notifications stream and count all the likes, dislikes and comments made to your post and keep a running counter for every one of your connections.  It has a built-in auto-reload which is user configurable, so you can leave it up when you are not around and still monitor your stream!

Notification Filter
  In addition to monitoring your stream, we have added a toolbar at the top to help with your notifications.  You can filter your notifications stream by any of the following criteria: 
Comments
Comments on Comments
Profile Comments
Posts
Likes
Mentions
Connections
Dislikes

You can now use any or all, in any combination of the criteria above to filter your notifications as you see fit.

Post Monitor
  We now keep track of what pages you view and like (or have liked) so we can highlight the notifications stream to give you a better picture of what you have already seen so you can move on to other posts.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Bubble Buddy Bubble Buddy
ID meeogomdflmogpadcojcbhnpkoelhlij
Επίσημο URL https://chrome.google.com/webstore/detail/bubble-buddy/meeogomdflmogpadcojcbhnpkoelhlij
Περιγραφή A handful of useful utilities for http://www.bubblews.com/
Μέγεθος Αρχείου 78.43 KB
Αριθμός Εγκαταστάσεων 19
Τρέχουσα Έκδοση 1.4.0
Τελευταία Ενημέρωση 2014-03-03
Ημερομηνία Δημοσίευσης 2014-03-03
Αξιολόγηση 4.62/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής Will
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://bubblebuddy.raxware.com/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bubble Buddy",
    "author": "elitecodex",
    "description": "A handful of useful utilities for http:\/\/www.bubblews.com\/",
    "version": "1.4.0",
    "options_page": "options.html",
    "permissions": [
        "http:\/\/www.bubblews.com\/",
        "storage"
    ],
    "page_action": {
        "default_icon": {
            "19": "smile19.png",
            "38": "smile38.png"
        },
        "default_title": "Bubble Buddy",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "bubble-buddy-bg.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "smile16.png",
        "48": "smile48.png",
        "128": "smile128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.bubblews.com\/news\/submit*"
            ],
            "css": [
                "post-counter.css"
            ],
            "js": [
                "jquery.js",
                "post-counter.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.bubblews.com\/notifications"
            ],
            "css": [
                "notifications.css"
            ],
            "js": [
                "jquery.js",
                "db.js",
                "utils.js",
                "shared.js",
                "notifications.js",
                "pageAction.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.bubblews.com\/news\/*"
            ],
            "exclude_matches": [
                "http:\/\/www.bubblews.com\/news\/submit*"
            ],
            "css": [
                "utils.css"
            ],
            "js": [
                "jquery.js",
                "db.js",
                "utils.js",
                "shared.js",
                "post.js"
            ]
        }
    ]
}