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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}