Socially Browse

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

Cos'è Socially Browse?

Socially Browse è un'estensione di Chrome sviluppata da https://sociallybrowse.com, e la sua funzione principale è "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Socially Browse

Scarica i file di estensione Socially Browse in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Socially Browse Socially Browse
ID lfgeakkfmipabfodelikepmlgnginifh
URL Ufficiale https://chromewebstore.google.com/detail/socially-browse/lfgeakkfmipabfodelikepmlgnginifh
Descrizione Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!
Dimensione del File 81.82 KB
Conteggio Installazioni 20
Versione Corrente 1.02
Ultimo Aggiornamento 2021-10-16
Data di Pubblicazione 2020-07-16
Sviluppatore https://sociallybrowse.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://sociallybrowse.com
URL della Pagina di Aiuto https://sociallybrowse.com/contact
URL della Pagina della Politica sulla Privacy https://sociallybrowse.com/privacy
Lingue Supportate 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"
        }
    }
}