Seen It

Skip over Imgur images that you've already seen.

ما هو Seen It؟

Seen It هو إضافة Chrome تم تطويرها بواسطة http://arjunsarode.com، والميزة الرئيسية لها هي "Skip over Imgur images that you've already seen.".

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

screenshot

تحميل ملف CRX للإضافة Seen It

قم بتنزيل ملفات الامتداد Seen It بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Seen It stores the images you see on Imgur and then automatically skips those images if you see them again. There are also options that allow you to disable skipping images, disable storing images, and clear all your stored images.                    

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

الاسم Seen It Seen It
ID nmajkegnjcjcjehiindhfldkfeoifeff
عنوان URL الرسمي https://chrome.google.com/webstore/detail/seen-it/nmajkegnjcjcjehiindhfldkfeoifeff
الوصف Skip over Imgur images that you've already seen.
حجم الملف 36.97 KB
عدد التثبيتات 469
النسخة الحالية 1.2.0
آخر تحديث 2016-09-29
تاريخ النشر 2016-09-29
تقييم 3.79/5 مجموع تقييمات 28
المطور http://arjunsarode.com
نوع الدفع free
موقع الإضافة http://arjunsarode.com
عنوان صفحة المساعدة http://arjunsarode.com
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Seen It",
    "description": "Skip over Imgur images that you've already seen.",
    "version": "1.2.0",
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/imgur.com\/*"
            ],
            "js": [
                "dist\/client.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Seen It",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}