Websee

This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!

Cos'è Websee?

Websee è un'estensione di Chrome sviluppata da https://websee.io, e la sua funzione principale è "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Websee

Scarica i file di estensione Websee 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

                        Join the collective mind of the web! Create private groups to automatically share the web content you and friends discover. More features on the way.

https://www.websee.io/

The extension codebase is completely open source and freely licensed under the GNU General Public License. The code repository can be viewed at https://github.com/lasernite/websee_ext. We welcome your contributions!                    

Informazioni di Base sull'Estensione

Nome Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
URL Ufficiale https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Descrizione This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Dimensione del File 79.49 KB
Conteggio Installazioni 27
Versione Corrente 0.6
Ultimo Aggiornamento 2017-03-25
Data di Pubblicazione 2017-03-25
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://websee.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.websee.io/
URL della Pagina della Politica sulla Privacy https://www.newstream.io/privacy_policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Websee",
    "short_name": "Websee",
    "description": "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!",
    "version": "0.6",
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Websee - The Sea of the Web",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.websee.io\/*",
                "https:\/\/www.websee.io\/*"
            ],
            "js": [
                "websee.js"
            ]
        }
    ]
}