SnipEasy - Share code snippets
Powerful tool for sharing and searching code snippets among developers
SnipEasy - Share code snippets là gì?
SnipEasy - Share code snippets là một tiện ích mở rộng Chrome được phát triển bởi Gregory Chris, và tính năng chính của nó là "Powerful tool for sharing and searching code snippets among developers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SnipEasy - Share code snippets
Tải xuống các tệp mở rộng SnipEasy - Share code snippets 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
Tool for sharing and searching for code snippets on SnipEasy.com. Extension features: - search snippets - submit new snippets directly from the extension popup (without opening the site) - Submit selected text as a new snippet (opens popup to snipeasy.com)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SnipEasy - Share code snippets |
ID | kdkiapkeknagpldiaopmnnebpdkhpeda |
URL Chính Thức | https://chromewebstore.google.com/detail/snipeasy-share-code-snipp/kdkiapkeknagpldiaopmnnebpdkhpeda |
Mô tả | Powerful tool for sharing and searching code snippets among developers |
Kích Thước Tệp | 65.76 KB |
Số Lần Cài Đặt | 71 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2014-03-12 |
Ngày Phát Hành | 2014-03-11 |
Nhà Phát Triển | Gregory Chris |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://snipeasy.com |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SnipEasy - Share code snippets", "description": "Powerful tool for sharing and searching code snippets among developers", "version": "1.2.0", "permissions": [ "cookies", "tabs", "http:\/\/*.snipeasy.com\/", "contextMenus" ], "icons": { "16": "img\/snipeasy16.png", "48": "img\/snipeasy48.png", "128": "img\/snipeasy128.png" }, "browser_action": { "default_title": "SnipEasy - Share code snippets", "default_icon": "img\/snipeasy16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content_script.js" ] } ], "background": { "scripts": [ "js\/background.js" ] } } |