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
官方網址 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
電子郵箱 [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"
    ]
}