Quotes

Takes notes when browsing webpages

什么是Quotes?

Quotes是由norridev开发的Chrome扩展程序,该扩展的主要功能是“Takes notes when browsing webpages”。

扩展截图

screenshot
screenshot
screenshot

下载Quotes扩展crx文件

下载Quotes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Quotes Quotes
ID efjijadimklfhajimkncmkebmcjmfbmg
官方URL https://chromewebstore.google.com/detail/quotes/efjijadimklfhajimkncmkebmcjmfbmg
简介 Takes notes when browsing webpages
文件大小 235 KB
安装次数 65
当前版本 0.1.3
更新时间 2013-05-08
上架时间 2013-05-07
评分 5.00/5 共5次评分
开发者 norridev
付费类型 free
支持的语言 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'"
}