Quarks App

A simple to-do app which works in context of the webpage and lets you create list right there.

Quarks App là gì?

Quarks App là một tiện ích mở rộng Chrome được phát triển bởi Quarks App, và tính năng chính của nó là "A simple to-do app which works in context of the webpage and lets you create list right there.".

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

screenshot
screenshot

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

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

                        Quarks App is a To-Do app which integrates with the webpage. It works in the context of the page so that you can focus on your task and produce more work instead of wasting time in switching between your todos and work.

V2.0.1
Fixed delete todo logic.

V2.0
App now lets you a create list which is shared across all the webpages of a website.

V1.0
This app also has a dashboard where you can view all your lists in one single page. Most importantly, it is secure as it stores all your data only on your computer.                    

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

Tên Quarks App Quarks App
ID kibkfgddilddhofjoenplihpggphogaj
URL Chính Thức https://chromewebstore.google.com/detail/quarks-app/kibkfgddilddhofjoenplihpggphogaj
Mô tả A simple to-do app which works in context of the webpage and lets you create list right there.
Kích Thước Tệp 3.09 MB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2018-05-18
Ngày Phát Hành 2018-05-18
Nhà Phát Triển Quarks App
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quarks App",
    "description": "A simple to-do app which works in context of the webpage and lets you create list right there.",
    "version": "2.0.1",
    "author": "Neeraj Khandelwal",
    "background": {
        "scripts": [
            "jquery-3.1.1.js",
            "elements\/app.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_title": "Quarks App"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "unlimitedStorage",
        "downloads",
        "http:\/\/www.quarksapp.com\/",
        "https:\/\/www.quarksapp.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "fonts.css",
                "styles\/title.css",
                "content_script.css",
                "fonts\/font_awesome\/css\/font-awesome.css"
            ],
            "js": [
                "jquery-3.1.1.js",
                "elements\/location.js",
                "elements\/add_note_button.js",
                "elements\/qte.js",
                "elements\/note.js",
                "elements\/modal.js",
                "content_script.js",
                "elements\/handlebars.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "fonts\/*.*",
        "fonts\/Open_Sans\/*.ttf",
        "fonts\/Roboto\/*.ttf",
        "fonts\/font_awesome\/fonts\/*.eot",
        "fonts\/font_awesome\/fonts\/*.svg",
        "fonts\/font_awesome\/fonts\/*.woff",
        "fonts\/font_awesome\/fonts\/*.woff2",
        "fonts\/font_awesome\/fonts\/*.ttf",
        "views\/*.*"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "offline_enabled": true,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}