Quotes

Takes notes when browsing webpages

Quotes là gì?

Quotes là một tiện ích mở rộng Chrome được phát triển bởi norridev, và tính năng chính của nó là "Takes notes when browsing webpages".

Ả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 Quotes

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

                        We all browse hundreds of webpages every day. But how many of them do you still remember?

With Quotes, you can easily keep track of your favorite web content.

Start building your web content collection in 2 steps:

1) Go to any webpage and select any content that you'd like to keep.
2) Right click and choose 'add to Quotes'

Congratulations, you just created your first quote!

Enjoy!

-------------------------------------------------
Team
App Developer  : [email protected]
Cool UI Design  : [email protected] http://dusuantou.com
Please feel free to contact us if you have any feedback or suggestions.

Also, special thanks to Una, Micky([email protected]) & Shirley([email protected]) for your input!                    

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

Tên Quotes Quotes
ID efjijadimklfhajimkncmkebmcjmfbmg
URL Chính Thức https://chromewebstore.google.com/detail/quotes/efjijadimklfhajimkncmkebmcjmfbmg
Mô tả Takes notes when browsing webpages
Kích Thước Tệp 235 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2013-05-08
Ngày Phát Hành 2013-05-07
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển norridev
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": "Quotes",
    "description": "Takes notes when browsing webpages",
    "version": "0.1.3",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "jquery-1.9.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}