Save to Pocket (mini)

Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.

ما هو Save to Pocket (mini)؟

Save to Pocket (mini) هو إضافة Chrome تم تطويرها بواسطة evmar، والميزة الرئيسية لها هي "Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Save to Pocket (mini)

قم بتنزيل ملفات الامتداد Save to Pocket (mini) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        I think Pocket is great, but I don't like how their Chrome extension requires so many permissions.  (It even makes use of those permissions to e.g. modify the Hacker News page.  I appreciate this can be turned off via their settings but I'd prefer it didn't even have the capability.)

This extension is the minimal code to auth into Pocket and save URLs into it.

Read the source here:
https://github.com/martine/pocket-mini

For more features, use the official Pocket extension:
https://chrome.google.com/webstore/detail/save-to-pocket/niloccemoadcdkdjlinkgdfekeahmflj                    

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

الاسم Save to Pocket (mini) Save to Pocket (mini)
ID calnfcidhlhdmmmnicdpddbmmjmfohem
عنوان URL الرسمي https://chromewebstore.google.com/detail/save-to-pocket-mini/calnfcidhlhdmmmnicdpddbmmjmfohem
الوصف Adds a toolbar button to save the current page to Pocket, without requiring the "all data" or "all websites" permissions.
حجم الملف 8.66 KB
عدد التثبيتات 1,016
النسخة الحالية 1
آخر تحديث 2014-08-08
تاريخ النشر 2014-08-08
تقييم 4.69/5 مجموع تقييمات 16
المطور evmar
نوع الدفع free
موقع الإضافة https://github.com/martine/pocket-mini
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save to Pocket (mini)",
    "description": "Adds a toolbar button to save the current page to Pocket, without requiring the \"all data\" or \"all websites\" permissions.",
    "version": "1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Add to Pocket",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/getpocket.com\/"
    ],
    "web_accessible_resources": [
        "auth.html"
    ],
    "manifest_version": 2
}