Socially Browse

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

Hvad er Socially Browse?

Socially Browse er en Chrome-udvidelse udviklet af https://sociallybrowse.com, og dens hovedfunktion er "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Socially Browse-udvidelses-CRX-fil

Download Socially Browse-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Socially Browse Socially Browse
ID lfgeakkfmipabfodelikepmlgnginifh
Officiel URL https://chromewebstore.google.com/detail/socially-browse/lfgeakkfmipabfodelikepmlgnginifh
Beskrivelse Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!
Filstørrelse 81.82 KB
Antal Installationer 20
Nuværende Version 1.02
Senest Opdateret 2021-10-16
Udgivelsesdato 2020-07-16
Udvikler https://sociallybrowse.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://sociallybrowse.com
Hjælpeside-URL https://sociallybrowse.com/contact
URL til Fortrolighedspolitik Side https://sociallybrowse.com/privacy
Understøttede Sprog 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"
        }
    }
}