Porgify

Replaces all images on all pages with images of Porg.

Porgify là gì?

Porgify là một tiện ích mở rộng Chrome được phát triển bởi liamrosenfeld, và tính năng chính của nó là "Replaces all images on all pages with images of Porg.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Porgify

Tải xuống các tệp mở rộng Porgify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A chrome extension that replaces every image with one of porg

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Porgify Porgify
ID anohiacdcfnoceaialpnnbbdcecamfkl
URL Chính Thức https://chromewebstore.google.com/detail/porgify/anohiacdcfnoceaialpnnbbdcecamfkl
Mô tả Replaces all images on all pages with images of Porg.
Kích Thước Tệp 523 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2021-03-12
Ngày Phát Hành 2018-04-16
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển liamrosenfeld
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/liamrosenfeld/porgify
URL Trang Trợ Giúp https://github.com/liamrosenfeld/porgify/issues
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}