Websee

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

Τι είναι το Websee;

Το Websee είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://websee.io, και η κύρια λειτουργία του είναι "This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Websee

Λήψη αρχείων επέκτασης Websee σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Websee Websee
ID pcpblbaphpngepnmihnboflfjaibgoek
Επίσημο URL https://chromewebstore.google.com/detail/websee/pcpblbaphpngepnmihnboflfjaibgoek
Περιγραφή This extension powers Websee, the most popular daily links and discussions across the web, from anonymous extension users like you!
Μέγεθος Αρχείου 79.49 KB
Αριθμός Εγκαταστάσεων 27
Τρέχουσα Έκδοση 0.6
Τελευταία Ενημέρωση 2017-03-25
Ημερομηνία Δημοσίευσης 2017-03-25
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://websee.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.websee.io/
URL της Σελίδας Πολιτικής Απορρήτου https://www.newstream.io/privacy_policy
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}