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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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
URL หน้าช่วยเหลือ 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"
    ]
}