Websee

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

Websee क्या है?

Websee 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Websee एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}