Watchpocket

This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.

Watchpocketคืออะไร?

Watchpocket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย einartryggvi และคุณลักษณะหลักของมันคือ "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Watchpocket

ดาวน์โหลดไฟล์ส่วนขยาย Watchpocket ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Watchpocket Watchpocket
ID jdhebcjihigmkcocnjgfhjkkommeadmh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/watchpocket/jdhebcjihigmkcocnjgfhjkkommeadmh
คำอธิบาย This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.
ขนาดไฟล์ 173 KB
จำนวนการติดตั้ง 95
เวอร์ชันปัจจุบัน 0.9.1
อัปเดตครั้งล่าสุด 2014-07-02
วันที่เผยแพร่ 2014-07-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา einartryggvi
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Watchpocket",
    "description": "This extension allows you to connect to your Pocket account, bookmark and view a list of all your bookmarks.",
    "version": "0.9.1",
    "icons": {
        "128": "img\/appIcon.png"
    },
    "background": {
        "scripts": [
            "js\/vendor\/jquery.min.js",
            "js\/main.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/getpocket.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "bookmarksList.html",
        "default_title": "View bookmarks"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/vendor\/jquery.min.js",
                "js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*",
        "notification.html",
        "auth.html"
    ]
}