Porgify

Replaces all images on all pages with images of Porg.

Porgify란 무엇입니까?

Porgify은(는) liamrosenfeld에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces all images on all pages with images of Porg."입니다.

확장 프로그램 스크린샷

screenshot

Porgify 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A chrome extension that replaces every image with one of porg

GitHub Repo:
https://github.com/liamrosenfeld/porgify                    

확장 프로그램 기본 정보

이름 Porgify Porgify
ID anohiacdcfnoceaialpnnbbdcecamfkl
공식 URL https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl
설명 Replaces all images on all pages with images of Porg.
파일 크기 523 KB
설치 횟수 75
현재 버전 2.0.0
최근 업데이트 2021-03-12
출시 날짜 2018-04-16
평점 5.00/5 총 10 개의 평점
개발자 liamrosenfeld
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/liamrosenfeld/porgify
도움말 페이지 URL https://github.com/liamrosenfeld/porgify/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "porgify\/porgify.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "porgify\/bg.js"
        ]
    },
    "description": "__MSG_appDesc__",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "version": "2.0.0",
    "default_locale": "en",
    "icons": {
        "128": "porgify\/logo128.png",
        "16": "porgify\/logo16.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "porgify\/options\/options.html",
        "chrome_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}