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 |
官方URL | 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." } } } |