Seen It
Skip over Imgur images that you've already seen.
Seen Itとは何ですか?
Seen Itはhttp://arjunsarode.comによって開発されたChromeの拡張機能で、その主な機能は「Skip over Imgur images that you've already seen.」です。
拡張機能のスクリーンショット
Seen It拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | |
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" ] } |