Notion Faster
Enhance the features of notion
什麼是Notion Faster?
Notion Faster是由evelancey開發的Chrome擴展程式,該擴展的主要功能是“Enhance the features of notion”。
擴展截圖
下載Notion Faster擴展crx文件
下載Notion Faster擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A chrome extension to improve the efficiency of the notion web app 擴展基本資訊
| 名稱 | |
| ID | jaklejjegklojefgmimdllbkhhkjfald |
| 官方網址 | https://chromewebstore.google.com/detail/notion-faster/jaklejjegklojefgmimdllbkhhkjfald |
| 簡介 | Enhance the features of notion |
| 檔案大小 | 50.93 KB |
| 安裝次數 | 132 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2023-03-19 |
| 上架時間 | 2023-02-14 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | evelancey |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/evestorm/notion-faster |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Notion Faster",
"version": "1.0.1",
"description": "Enhance the features of notion",
"icons": {
"16": "src\/images\/icon-16.png",
"32": "src\/images\/icon-32.png",
"48": "src\/images\/icon-48.png",
"128": "src\/images\/icon-128.png"
},
"content_scripts": [
{
"js": [
"assets\/content.ts-loader-96866cf9.js"
],
"matches": [
"https:\/\/www.notion.so\/*",
"https:\/\/*.notion.site\/*"
],
"run_at": "document_end",
"css": [
"assets\/content-219ec3f4.css"
]
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/www.notion.so\/*"
],
"resources": [
"src\/utils\/index.ts",
"src\/images\/eye.svg",
"src\/images\/eye-hidden.svg",
"src\/assets\/styles\/outline.css",
"src\/assets\/styles\/fullPages.css",
"src\/assets\/styles\/smallText.css",
"src\/plugins\/Outline\/Outline.ts",
"src\/plugins\/FullPages\/FullPages.ts",
"src\/plugins\/SmallText\/SmallText.ts"
],
"use_dynamic_url": false
},
{
"matches": [
"https:\/\/*.notion.site\/*",
"https:\/\/www.notion.so\/*"
],
"resources": [
"assets\/index-2ff16699.js",
"assets\/content.ts-f63ca1ac.js"
],
"use_dynamic_url": true
}
],
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"commands": {
"show-outline": {
"suggested_key": {
"default": "Ctrl+Shift+O"
},
"description": "Show or hide the outline."
},
"show-fullPages": {
"suggested_key": {
"default": "Ctrl+Shift+K"
},
"description": "Set full width for all pages by default."
},
"show-smallText": {
"suggested_key": {
"default": "Ctrl+Shift+Z"
},
"description": "Set small text for all pages by default."
}
}
} | |