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!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" ] } ] } |