Socially Browse

Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!

What is Socially Browse?

Socially Browse is a Chrome extension developed by https://sociallybrowse.com, and its main feature is "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!".

Extension Screenshots

screenshot
screenshot

Download Socially Browse Extension CRX File

Download Socially Browse extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Socially Browse allows you to comment and chat on any webpage. The comments are relative to the current website URL you are visiting. No feedback box on a page? Comment on Socially Browse!                    

Extension Basic Information

Name Socially Browse Socially Browse
ID lfgeakkfmipabfodelikepmlgnginifh
Official URL https://chromewebstore.google.com/detail/socially-browse/lfgeakkfmipabfodelikepmlgnginifh
Description Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!
File Size 81.82 KB
Installation Count 20
Current Version 1.02
Last Updated 2021-10-16
Publish Date 2020-07-16
Developer https://sociallybrowse.com
Email [email protected]
Payment Type free
Extension Website https://sociallybrowse.com
Help Page URL https://sociallybrowse.com/contact
Privacy Policy Page URL https://sociallybrowse.com/privacy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Socially Browse",
    "version": "1.02",
    "description": "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!",
    "background": {
        "scripts": [
            "jquery.js",
            "backgroundScript.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' https:\/\/sociallybrowse.com\/*; object-src 'self'",
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Socially Browse",
        "default_popup": "popup.html",
        "default_icon": {
            "32": "socially_browse.png"
        }
    }
}