Browserbug

A custom companion to make virtual work less lonely!

Τι είναι το Browserbug;

Το Browserbug είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον IMMA Studio, LLC, και η κύρια λειτουργία του είναι "A custom companion to make virtual work less lonely!".

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

screenshot
screenshot
screenshot

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

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

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

                        Whether you'd like your favorite music idol to send you a message of encouragement, a video game character to remind you to take a break, or an old friend to give you a pep talk, Browserbugs make your time online a more productive, more positive, and less lonely experience.

Create your own Browserbug from any image, name them, choose their personality, and even add your own list of custom messages!

NEW FEATURES:
- A new and improved studio, with a list of default Browserbug messages to choose from
- Choose your Browserbug's texting style! Change their tendencies of punctuation (?!?!?!), CAPITALIZATION, or even how often they use emojis :3 XD
- Generate URLs to easily export and share Browserbugs with others! Please remember to also save local copies of Browserbugs you make as we continue developing this feature!                    

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

Όνομα Browserbug Browserbug
ID pfggohdmelklomhabkeegajkjpdgppld
Επίσημο URL https://chromewebstore.google.com/detail/browserbug/pfggohdmelklomhabkeegajkjpdgppld
Περιγραφή A custom companion to make virtual work less lonely!
Μέγεθος Αρχείου 2.22 MB
Αριθμός Εγκαταστάσεων 40
Τρέχουσα Έκδοση 2.10
Τελευταία Ενημέρωση 2020-10-07
Ημερομηνία Δημοσίευσης 2020-10-05
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής IMMA Studio, LLC
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://imma.studio/browserbug/
URL της Σελίδας Πολιτικής Απορρήτου http://imma.studio/browserbug/privacy_policy
Υποστηριζόμενες Γλώσσες en,es,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Browserbug",
    "version": "2.10",
    "description": "A custom companion to make virtual work less lonely!",
    "icons": {
        "16": "images\/new_imma_16.png",
        "32": "images\/new_imma_32.png",
        "48": "images\/new_imma_48.png",
        "128": "images\/new_imma_128.png"
    },
    "permissions": [
        "storage",
        "notifications",
        "alarms",
        "http:\/\/ec2-54-201-225-18.us-west-2.compute.amazonaws.com\/",
        "https:\/\/imma-bucket.s3-us-west-2.amazonaws.com\/*"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "util.js",
            "constants.js",
            "background.js",
            "jquery-3.5.1.min.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/imma.studio\/browserbug\/studio\/"
            ],
            "js": [
                "util.js",
                "constants.js",
                "jquery-3.5.1.min.js",
                "interface_scripts\/studioInterface.js"
            ]
        },
        {
            "matches": [
                "http:\/\/imma.studio\/browserbug\/my_bbugs\/"
            ],
            "js": [
                "util.js",
                "constants.js",
                "jquery-3.5.1.min.js",
                "interface_scripts\/accountInterface.js"
            ]
        },
        {
            "matches": [
                "http:\/\/imma.studio\/browserbug\/options\/"
            ],
            "js": [
                "util.js",
                "constants.js",
                "jquery-3.5.1.min.js",
                "interface_scripts\/optionsInterface.js"
            ]
        },
        {
            "matches": [
                "http:\/\/ec2-54-201-225-18.us-west-2.compute.amazonaws.com\/getBbugFile*"
            ],
            "js": [
                "util.js",
                "constants.js",
                "jquery-3.5.1.min.js",
                "interface_scripts\/bbugImporter.js"
            ]
        }
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Browserbug",
        "default_icon": "images\/new_imma_48.png",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "optionsRedirect.html",
    "default_locale": "en"
}