NAK
Browser Tab Management Extension
NAK क्या है?
NAK NAK द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser Tab Management Extension"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NAK एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |