Gistify

This extension searches for gist URLs in a page and replaces them with embedded gists.

Gistify là gì?

Gistify là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension searches for gist URLs in a page and replaces them with embedded gists.".

Ả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 Gistify

Tải xuống các tệp mở rộng Gistify 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 searches for Gist URL's on the page and replaces them with embedded gists. Inspired by poorly formatted code in the comments on the blondiebytes YouTube channel (http://bit.ly/1NbxNzV).

Contributors: George Witteman, Kathryn Hodge                    

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

Tên Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
URL Chính Thức https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Mô tả This extension searches for gist URLs in a page and replaces them with embedded gists.
Kích Thước Tệp 40.31 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-02-26
Ngày Phát Hành 2016-02-26
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng http://bit.ly/1NbxNzV
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gistify",
    "description": "This extension searches for gist URLs in a page and replaces them with embedded gists.",
    "version": "1.0",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Find Gists!"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.github.com\/"
    ]
}