Gistify
This extension searches for gist URLs in a page and replaces them with embedded gists.
Gistifyคืออะไร?
Gistify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension searches for gist URLs in a page and replaces them with embedded gists."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gistify
ดาวน์โหลดไฟล์ส่วนขยาย Gistify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | bjapmncmmhnhbfkfaopdajhmhccfhonm |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm |
| คำอธิบาย | This extension searches for gist URLs in a page and replaces them with embedded gists. |
| ขนาดไฟล์ | 40.31 KB |
| จำนวนการติดตั้ง | 17 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2016-02-26 |
| วันที่เผยแพร่ | 2016-02-26 |
| คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
| ผู้พัฒนา | Unknown |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | http://bit.ly/1NbxNzV |
| ภาษาที่รองรับ | 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\/"
]
} | |