Imgur Chrome Extension

This extension shows trending posts on Imgur when a new tab is open

Imgur Chrome Extensionとは何ですか?

Imgur Chrome Extensionはgillesbertauxによって開発されたChromeの拡張機能で、その主な機能は「This extension shows trending posts on Imgur when a new tab is open」です。

拡張機能のスクリーンショット

screenshot
screenshot

Imgur Chrome Extension拡張機能のCRXファイルをダウンロード

Imgur Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Hello fellow Imgurian! This extension shows top posts from the front page or usersub every time you open a new tab. 

I added "productivity mode" to prevent the posts to display when you open a new tab.

-----

Disclaimer: this project was not built by the Imgur staff. This is an unofficial Chrome Extension.                    

拡張機能の基本情報

名前 Imgur Chrome Extension Imgur Chrome Extension
ID ajacnfghngjimlebbfafobbhofkmpnnp
公式URL https://chrome.google.com/webstore/detail/imgur-chrome-extension/ajacnfghngjimlebbfafobbhofkmpnnp
説明 This extension shows trending posts on Imgur when a new tab is open
ファイルサイズ 668 KB
インストール数 76
現在のバージョン 1.0
最終更新日 2017-01-14
公開日 2017-01-14
評価 5.00/5 合計 3 レビュー
開発者 gillesbertaux
Eメール [email protected]
支払い方法 in_app
拡張機能のウェブサイト https://github.com/gillesbertaux/imgur-chrome-extension
ヘルプページのURL https://github.com/gillesbertaux/imgur-chrome-extension
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Chrome Extension",
    "description": "This extension shows trending posts on Imgur when a new tab is open",
    "version": "1.0",
    "author": "TheMappleKindYeah",
    "homepage_url": "https:\/\/github.com\/gillesbertaux\/imgur-chrome-extension",
    "short_name": "Imgur App",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "chrome_url_overrides": {
        "newtab": "imgur.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}