Hyliter
Saves selected bits of text from your browsing.
什麼是Hyliter?
Hyliter是由Bibek Ghimire開發的Chrome擴展程式,該擴展的主要功能是“Saves selected bits of text from your browsing.”。
擴展截圖
下載Hyliter擴展crx文件
下載Hyliter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Save important text for later while browsing the web.
You can save quotes, confirmation numbers, or even personal notes. 擴展基本資訊
| 名稱 | |
| ID | nhiannhalledfohikpmbclkalcknilcg |
| 官方網址 | https://chromewebstore.google.com/detail/hyliter/nhiannhalledfohikpmbclkalcknilcg |
| 簡介 | Saves selected bits of text from your browsing. |
| 檔案大小 | 63.43 KB |
| 安裝次數 | 31 |
| 目前版本 | 0.1 |
| 更新時間 | 2017-01-02 |
| 上架時間 | 2017-01-02 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | Bibek Ghimire |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hyliter",
"description": "Saves selected bits of text from your browsing.",
"version": "0.1",
"permissions": [
"contextMenus"
],
"web_accessible_resources": [
"fonts\/*.woff2"
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"css\/content.css"
],
"js": [
"js\/jquery-3.1.1.min.js",
"js\/content.js"
]
}
],
"browser_action": {
"default_title": "View Hylites",
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"24": "icons\/icon24.png",
"32": "icons\/icon32.png"
}
},
"background": {
"scripts": [
"js\/jquery-3.1.1.min.js",
"js\/hyliter.js",
"js\/background.js"
],
"persistent": true
}
} | |