NAK

Browser Tab Management Extension

NAKとは何ですか?

NAKはNAKによって開発されたChromeの拡張機能で、その主な機能は「Browser Tab Management Extension」です。

拡張機能のスクリーンショット

screenshot

NAK拡張機能のCRXファイルをダウンロード

NAK拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}