TEKS Accordion
Collapse the TEKS guidelines into an accordion to make them easier to browse.
什么是TEKS Accordion?
TEKS Accordion是由Christian Genco开发的Chrome扩展程序,该扩展的主要功能是“Collapse the TEKS guidelines into an accordion to make them easier to browse.”。
扩展截图
下载TEKS Accordion扩展crx文件
下载TEKS Accordion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | agcogdelknkendnimmjnajcickdndjba |
官方URL | https://chromewebstore.google.com/detail/teks-accordion/agcogdelknkendnimmjnajcickdndjba |
简介 | Collapse the TEKS guidelines into an accordion to make them easier to browse. |
文件大小 | 52.45 KB |
安装次数 | 82 |
当前版本 | 1.0 |
更新时间 | 2014-03-31 |
上架时间 | 2014-03-31 |
评分 | 5.00/5 共3次评分 |
开发者 | Christian Genco |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TEKS Accordion", "description": "Collapse the TEKS guidelines into an accordion to make them easier to browse.", "version": "1.0", "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/ritter.tea.state.tx.us\/rules\/tac\/*" ], "js": [ "jquery.js", "content_script.js" ], "css": [ "style.css" ] } ], "permissions": [ "http:\/\/ritter.tea.state.tx.us\/rules\/tac\/*" ], "page_action": { "default_name": "TEKS Accordion", "default_icon": "icon.png" } } |