NAK

Browser Tab Management Extension

NAK란 무엇입니까?

NAK은(는) NAK에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Tab Management Extension"입니다.

확장 프로그램 스크린샷

screenshot

NAK 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 NAK NAK
ID pcdpnkbhkokjcjanmbophfdledelkoao
공식 URL https://chromewebstore.google.com/detail/nak/pcdpnkbhkokjcjanmbophfdledelkoao
설명 Browser Tab Management Extension
파일 크기 885 KB
설치 횟수 31
현재 버전 1.2.2
최근 업데이트 2019-07-17
출시 날짜 2019-07-17
평점 4.00/5 총 4 개의 평점
개발자 NAK
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://nak-tabs.herokuapp.com/
지원되는 언어 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
}