Index
Organize Everything.
什麼是Index?
Index是由http://indexapp.com開發的Chrome擴展程式,該擴展的主要功能是“Organize Everything.”。
擴展截圖
下載Index擴展crx文件
下載Index擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Use the Index Chrome extension to quickly #index interesting ideas you find in the wild. The extension lets you quickly #index sites and pictures so you can build your ideas and make projects happen. Whether learning something new, or keeping track of the daily grind, Index keeps you organized so you can focus on what matters. For super quick Indexing, hit CMD-SHIFT-i
擴展基本資訊
名稱 | |
ID | ghkpddjaenkipmahjnkhljeipabemdfc |
官方網址 | https://chrome.google.com/webstore/detail/index/ghkpddjaenkipmahjnkhljeipabemdfc |
簡介 | Organize Everything. |
檔案大小 | 30.3 KB |
安裝次數 | 722 |
目前版本 | 0.9 |
更新時間 | 2017-11-26 |
上架時間 | 2017-11-26 |
評分 | 4.00/5 共 9 次評分 |
開發者 | http://indexapp.com |
付費類型 | free |
擴展官網 | https://indexapp.com |
說明頁面URL | https://indexapp.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Index", "version": "0.9", "manifest_version": 2, "description": "Organize Everything.", "icons": { "16": "icons\/chevron-icon-16.png", "32": "icons\/chevron-icon-32.png", "48": "icons\/chevron-icon-48.png", "96": "icons\/chevron-icon-96.png", "128": "icons\/chevron-icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "storage", "http:\/\/*\/", "https:\/\/*\/", "cookies" ], "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "16": "icons\/chevron-icon-16.png", "32": "icons\/chevron-icon-32.png", "48": "icons\/chevron-icon-48.png", "96": "icons\/chevron-icon-96.png", "128": "icons\/chevron-icon-128.png" }, "default_title": "Index this page", "default_popup": "popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+I" }, "description": "Opens the Index save extension." } } } |