Socially Browse

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

Was ist Socially Browse?

Socially Browse ist eine Chrome-Erweiterung, die von https://sociallybrowse.com entwickelt wurde, und ihr Hauptmerkmal ist "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!".

Erweiterungsscreenshots

screenshot
screenshot

Socially Browse-Erweiterungs-CRX-Datei herunterladen

Laden Sie Socially Browse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Socially Browse Socially Browse
ID lfgeakkfmipabfodelikepmlgnginifh
Offizielle URL https://chromewebstore.google.com/detail/socially-browse/lfgeakkfmipabfodelikepmlgnginifh
Beschreibung Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!
Dateigröße 81.82 KB
Installationsanzahl 20
Aktuelle Version 1.02
Letztes Update 2021-10-16
Veröffentlichungsdatum 2020-07-16
Entwickler https://sociallybrowse.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://sociallybrowse.com
Hilfeseite URL https://sociallybrowse.com/contact
URL der Datenschutzrichtlinien-Seite https://sociallybrowse.com/privacy
Unterstützte Sprachen 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"
        }
    }
}