NAK
Browser Tab Management Extension
NAK là gì?
NAK là một tiện ích mở rộng Chrome được phát triển bởi NAK, và tính năng chính của nó là "Browser Tab Management Extension".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NAK
Tải xuống các tệp mở rộng NAK dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Update Version 1.2: Now pressing save all opens a new NAK tab for users. Version 1.2.2: Users are now asked to login if they open application without being logged in on webpage. Nak is an interactive tab based productivity platform meant to better organize online resources for both individuals and teams. Throughout the day we all experienced the frustration of being overwhelmed by the number of tabs we had open within our browser. We wanted a better way to both to view, organize, and share these online resources. We utilize socket.io along side Sequelize/postgreSQL and Express to manage our backend and user connections. In the front end we use React with the React Drag and Drop framework, as well as redux to create a responsive user experience. This project consists of a chrome extension that works in combination with a single page web application. The extension allows us to handle user tab data, through the utilization of the chrome api, to our web application to provide the user with the ability to seamlessly move from space to space with an organized collection of their online resources.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NAK |
ID | pcdpnkbhkokjcjanmbophfdledelkoao |
URL Chính Thức | https://chromewebstore.google.com/detail/nak/pcdpnkbhkokjcjanmbophfdledelkoao |
Mô tả | Browser Tab Management Extension |
Kích Thước Tệp | 885 KB |
Số Lần Cài Đặt | 31 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2019-07-17 |
Ngày Phát Hành | 2019-07-17 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | NAK |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://nak-tabs.herokuapp.com/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NAK", "version": "1.2.2", "description": "Browser Tab Management Extension", "permissions": [ "activeTab", "declarativeContent", "http:\/\/localhost:8080\/*", "https:\/\/nak-tabs.herokuapp.com\/*", "tabs" ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "web_accessible_resources": [ "http:\/\/localhost:8080\/*" ], "manifest_version": 2 } |