Contextinator

Browse the Internets around your projects

Contextinator là gì?

Contextinator là một tiện ích mở rộng Chrome được phát triển bởi Ankit Ahuja, và tính năng chính của nó là "Browse the Internets around your projects".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Contextinator

Tải xuống các tệp mở rộng Contextinator 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

                        Contextinator lets you divide your web browsing sessions into projects and manage all of their related information. A project is a collection of browser tabs opened in the same window, series of filters in existing applications (Gmail, Evernote, Dropbox, etc.), bookmarks, people and tasks.

With Contextinator, you can: 

- Access and manage all the information related to a project from a single page
- Save and restore browser tabs for each project
- Work on multiple projects simultaneously and easily switch between them
- Get a big picture of your projects to better plan your work
- Avoid distractions in your email inbox, only look at unread email for a project

What is a Project?

A project is what you make it. It can be a holiday you're planning to Puerto Rico, a course you're taking in School, your PhD thesis, a hobby project or web browsing you do for fun. 

Each project may have several kinds of information associated with it:
Window - Each project has a single window 

Tabs - Any tabs you open in the project window belong to that project. These tabs are saved, so the next time you open a project, they will be restored. You can close a project at any time, without worrying about losing tabs. 

Apps - For each project, you can define filters for existing applications like Gmail, Evernote, etc. For example, you can say that a Gmail Label belongs to a project. When you visit Gmail in a project, you will be automatically redirected to that label. 

Bookmarks - You can create bookmarks specific to a project. 

People - You can add people to a project by entering their email addresses. When you visit a project's homepage, we will show unread Gmail messages from those users. 

Tasks - Contextinator comes with a task manager. You can add tasks to a project, which are easily accessible when you are web browsing.

To learn more about how to use Contextinator, please visit: http://contextinator.cs.vt.edu/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Contextinator Contextinator
ID gkekoafmgpplllkmodcgnjgaipnknggo
URL Chính Thức https://chromewebstore.google.com/detail/contextinator/gkekoafmgpplllkmodcgnjgaipnknggo
Mô tả Browse the Internets around your projects
Kích Thước Tệp 342 KB
Số Lần Cài Đặt 596
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2013-10-10
Ngày Phát Hành 2013-10-09
Đánh Giá 3.50/5 Tổng số 40 Đánh Giá
Nhà Phát Triển Ankit Ahuja
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://contextinator.cs.vt.edu
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contextinator",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Browse the Internets around your projects",
    "background": {
        "scripts": [
            "lib\/jquery.js",
            "lib\/underscore.js",
            "utils\/windows.js",
            "utils\/browser-action-icon.js",
            "utils\/bookmarks.js",
            "utils\/projects.js",
            "background\/contextmenu.js",
            "background\/windows.js",
            "background\/apps.js",
            "background\/updates.js",
            "background\/sync.js",
            "background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/underscore.js",
                "lib\/jquery.js",
                "lib\/handlebars.js",
                "utils\/browser-action-icon.js",
                "utils\/windows.js",
                "utils\/projects.js",
                "jumper\/templates\/project.js",
                "jumper\/templates\/new.js",
                "jumper\/templates\/overview.js",
                "content\/templates\/bar.js",
                "jumper\/jumper.js",
                "content\/content.js"
            ],
            "css": [
                "lib\/dropdown.css",
                "content\/content.css",
                "jumper\/jumper.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "Contextinator",
        "default_popup": "browserAction\/browser-action.html",
        "default_icon": "images\/icon19.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "bookmarks",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "unlimitedStorage",
        "webNavigation",
        "notifications"
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "16": "images\/icon16.png"
    }
}