Newtion

You can use New Page shortcut of Notion in web browser.

Newtion क्या है?

Newtion https://cohu.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You can use New Page shortcut of Notion in web browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Newtion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This chrome extension makes it possible to use new-page shortcut for Notion in web browser.

## Feature

### Open Source Software

The source code is publicly available and MIT license.

### Use safely

This Chrome extension requires Notion's official API, but the only permissions required are to insert data and no user information is required.

## Shortcuts


- `Cmd/Ctrl+Shift+L`
  - Open setting popup
- `Cmd/Ctrl+Shift+I`
  - Create & open new notion page 

## Install

You also need set Newtion in the next section.

Access to [chrome web store](https://chrome.google.com/webstore/detail/newtion/fdjjmpjjbhhepdakdifipaehpcgojkgf).

Please wait for browser extensions other than GoogleChrome.

## How to use

You need 3 step settings. Please follow below.

### 1. Prepare Notion Integrations from setting page

- Access to [https://www.notion.so/my-integrations](https://www.notion.so/my-integrations) and click `+ New Integration`
- Input basic information
  - name
  - logo(optional)
  - Associated workspace
  - Capabilities
    - check Insert Content
    - check No user Information
- then, submit and copy `Internal Integration Token` (use later)

### 2. Prepare Notion Database

- Access to [https://www.notion.so/](https://www.notion.so/)
- Create new page with full screen database
- Delete `Tags` colomn (Optional)
- **💡 Set leftmost colomn name to `Name` (default in English)**
  - This will be updated to customizable...
- Get database id and copy (use later)
  - `https://www.notion.so/YOUR_DOMAIN/DATABASE_ID`
  - `DATABASE_ID` is database id
- Invite your Integrations
  - Click share button in header
  - Then, Select an integration you created some time ago

### 3. Set up Newtion

- Input `Cmd/Ctrl + Shift + L` to open setting popup
  - or click `Newtion` in list of chrome extensions
- Input Database ID and API Secret (char is hidden)

### Let's use Newtion Shortcut

Congratulations!

Input `Cmd/Ctrl + Shift + I` to create and open new page!

## Usecase

I assume the following cases.

- When you are searching a Web site and want to summarize the information in Notion
- Having trouble finding a shortcut to open a new page in the browser version of Notion.
- Opening a new page in Notion causes the number of pages in the sidebar to increase.

## Developer

Hi, I'm japanese university student.

## Links

- [Home page](https://cohu-dev.github.io/newtion/)
- [Privacy Policy](https://cohu-dev.github.io/chrome-privacy-policy/)                    

एक्सटेंशन की मूल जानकारी

नाम Newtion Newtion
ID fdjjmpjjbhhepdakdifipaehpcgojkgf
आधिकारिक URL https://chromewebstore.google.com/detail/newtion/fdjjmpjjbhhepdakdifipaehpcgojkgf
विवरण You can use New Page shortcut of Notion in web browser.
फ़ाइल का आकार 645 KB
स्थापना संख्या 34
वर्तमान संस्करण 0.1.1
अंतिम अपडेट 2022-06-24
प्रकाशन तिथि 2022-06-18
डेवलपर https://cohu.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/cohu-dev/newtion
सहायता पृष्ठ URL https://github.com/cohu-dev/newtion/issues
गोपनीयता नीति पृष्ठ URL https://cohu-dev.github.io/chrome-privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Newtion",
    "description": "You can use New Page shortcut of Notion in web browser.",
    "homepage_url": "https:\/\/cohu-dev.github.io\/newtion\/",
    "version": "0.1.1",
    "commands": {
        "newtion": {
            "suggested_key": {
                "default": "Ctrl+Shift+I",
                "mac": "Command+Shift+I"
            },
            "description": "create new page, then open with modal."
        },
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+L",
                "mac": "Command+Shift+L",
                "chromeos": "Ctrl+Shift+L",
                "linux": "Ctrl+Shift+L"
            }
        }
    },
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html",
        "default_title": "Newtion"
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}