Seen It
Skip over Imgur images that you've already seen.
Seen It क्या है?
Seen It http://arjunsarode.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Skip over Imgur images that you've already seen."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Seen It एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |