GloNavi Anchor for kintone
This is a Chrome extension that allows you to add your own shortcut buttons to kintone's global navigation.
什麼是GloNavi Anchor for kintone?
GloNavi Anchor for kintone是由kyomesuke開發的Chrome擴展程式,該擴展的主要功能是“This is a Chrome extension that allows you to add your own shortcut buttons to kintone's global navigation.”。
擴展截圖
下載GloNavi Anchor for kintone擴展crx文件
下載GloNavi Anchor for kintone擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
By registering frequently used links, you can easily access those pages. The buttons can be customized with your favorite Emojis or images to make them easy to remember. This extension is my own personal work and does not have any relationship with Cybozu, Inc. or any other organization which I belong to.
擴展基本資訊
名稱 | GloNavi Anchor for kintone |
ID | gjniipeclimojedklghnfjfioklgfllc |
官方網址 | https://chromewebstore.google.com/detail/glonavi-anchor-for-kinton/gjniipeclimojedklghnfjfioklgfllc |
簡介 | This is a Chrome extension that allows you to add your own shortcut buttons to kintone's global navigation. |
檔案大小 | 31.86 KB |
安裝次數 | 175 |
目前版本 | 1.5.1 |
更新時間 | 2024-01-18 |
上架時間 | 2021-06-04 |
評分 | 5.00/5 共 2 次評分 |
開發者 | kyomesuke |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/Kyome22/GloNavi-Anchor-for-kintone |
支援的語言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GloNavi Anchor for kintone", "version": "1.5.1", "homepage_url": "https:\/\/github.com\/Kyome22\/kintone-GloNavi-Anchor", "description": "__MSG_description__", "default_locale": "en", "options_page": "option.html", "permissions": [ "storage", "unlimitedStorage" ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "matches": [ "https:\/\/*.cybozu.com\/k\/*", "https:\/\/*.cybozu-dev.com\/k\/*", "https:\/\/*.kintone.com\/k\/*", "https:\/\/*.kintone-dev.com\/k\/*", "https:\/\/*.cybozu.cn\/k\/*", "https:\/\/*.cybozu-dev.cn\/k\/*" ] } ], "background": { "service_worker": "js\/background.js" } } |