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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                                            

معلومات أساسية عن التمديد

الاسم 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"
    ]
}