Netvyne Extension

Comment, share, and discuss your favorite websites.

Netvyne Extensionคืออะไร?

Netvyne Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://netvyne.com และคุณลักษณะหลักของมันคือ "Comment, share, and discuss your favorite websites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netvyne Extension

ดาวน์โหลดไฟล์ส่วนขยาย Netvyne Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Download Netvyne's free open-source extension to communicate and discuss ideas everywhere on the web.
The Netvyne extension works automatically. Just click "Add to Chrome," then visit your favorite website to get started!

FEATURES

✓ Eliminate the need for account juggling as you visit different sites
✓ Join in conversation with fellow members of the Netvyne community
✓ Share pages with your friends, and start a discussion
✓ Get fast, friendly support from the Netvyne team

PERMISSIONS

We need the permissions we have requested in order to:
1.) Tell which page you are on so we can fetch the comments for that page. This results in the "Read your browsing history" warning. Note, we don't actually read your browsing history. You can see this from our open source code (we have taken steps such as url hashing), as well from the Network tab of the browser's developer console. You'll find that every request that is made, along with the data attached, is only out of necessity (i.e. you wrote a comment, and that comment has to make it to us).
2.) Insert the extension into the page as a sidebar. This results in the "Read and change all your data on the websites you visit" warning. We tried having the extension as a popup, but the experience was subpar. Again, you can see from the Network tab that there is no unexpected information being sent out.
We are using the minimal permissions necessary for this extension to function.
We have even tried brute forcing permission combinations in an effort to make a reduction.
Despite these attempts to further restrict permission usage while maintaining functionality, we have been unable to do so. We've asked on Hacker News about this as well, and did not find a solution. 
The code is public, so if you are able to reduce the number of permissions, we'd gladly accept your contribution. Or, if you are willing to sacrifice some features, you can check out the code and build yourself a modified version to this end. 
It is worth mentioning here that we have a sustainable business model in which the users (you) are not the product: https://blog.netvyne.com/blog/business-model
Here is our privacy policy: https://blog.netvyne.com/blog/privacy-policy

***

Free & Open-Sourced for Transparency (MIT License)
https://github.com/netvyne/ext                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netvyne Extension Netvyne Extension
ID hdmpoglhdchngeiefpiaiilfeicjjfap
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netvyne-extension/hdmpoglhdchngeiefpiaiilfeicjjfap
คำอธิบาย Comment, share, and discuss your favorite websites.
ขนาดไฟล์ 708 KB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 2.0.348
อัปเดตครั้งล่าสุด 2022-07-18
วันที่เผยแพร่ 2021-08-21
ผู้พัฒนา https://netvyne.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.netvyne.com/
URL หน้าช่วยเหลือ https://www.netvyne.com/
URL หน้านโยบายความเป็นส่วนตัว https://netvyne.com/privacy-policy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netvyne Extension",
    "description": "Comment, share, and discuss your favorite websites.",
    "version": "2.0.348",
    "cross_origin_embedder_policy": {
        "value": "require-corp"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "crop-style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "action": [],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ]
}