| 1234567891011121314151617181920212223242526272829303132 |
- /**
- * FeHelper 公共文件
- * @author zhaoxianlie
- */
- // 常量定义
- export let MSG_TYPE = {
- // 正式版chrome extension id
- STABLE_EXTENSION_ID: 'pkgccpejnmalmdinmhkkfafefagiiiad',
- // github 上的下载地址
- DOWNLOAD_FROM_GITHUB: 'https://github.com/zxlie/FeHelper/tree/master/apps/static/screenshot/crx',
- // MENU SAVED
- MENU_SAVED: 'menu_saved',
- // JSON手动格式化
- JSON_FORMAT: 'json-format',
- DYNAMIC_TOOL: 'dynamic',
- TAB_CREATED_OR_UPDATED: 'TAB_CREATED_OR_UPDATED',
- CAPTURE_VISIBLE_PAGE: 'capture-visible-page',
- OPEN_DYNAMIC_TOOL: 'open-dynamic-tool',
- OPEN_PAGE: 'open-page',
- DYNAMIC_TOOL_INSTALL_OR_OFFLOAD: 'dynamic-tool-install-or-offload',
- DYNAMIC_ANY_THING: 'fh-dynamic-any-thing'
- };
- export default MSG_TYPE;
|