Project Notes for Codeable

Add and manage separate project notes on every Codeable project.

什麼是Project Notes for Codeable?

Project Notes for Codeable是由Ali Khallad開發的Chrome擴展程式,該擴展的主要功能是“Add and manage separate project notes on every Codeable project.”。

擴展截圖

screenshot
screenshot
screenshot

下載Project Notes for Codeable擴展crx文件

下載Project Notes for Codeable擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Save your notes on the project page and save your time. This extension makes it easy to take project notes on Codeable, and grab them later whether on the project page, where you can grab the notes specific to the project, or on the extension page where you can retrieve and manage all saved notes..

Take note, save time
• Add notes so you can find it later with one click.

Always within reach
• Available everywhere, open the project page to view only that project notes, or the extension popup to view all notes.

_____________________________________________
Website: https://wpali.com
Codeable Profile: https://wpali.com/codeable                    

擴展基本資訊

名稱 Project Notes for Codeable Project Notes for Codeable
ID kdlhmpjpaehdknpcdmdphbamcmhehnjg
官方網址 https://chromewebstore.google.com/detail/project-notes-for-codeabl/kdlhmpjpaehdknpcdmdphbamcmhehnjg
簡介 Add and manage separate project notes on every Codeable project.
檔案大小 78.65 KB
安裝次數 39
目前版本 0.2
更新時間 2020-05-22
上架時間 2020-05-21
開發者 Ali Khallad
電子郵箱 [email protected]
付費類型 free
擴展官網 https://wpali.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Project Notes for Codeable",
    "version": "0.2",
    "author": "Ali Khallad",
    "description": "Add and manage separate project notes on every Codeable project.",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "24": "assets\/icons\/icon24.png",
        "32": "assets\/icons\/icon32.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.codeable.io\/*"
            ],
            "js": [
                "assets\/js\/content.js"
            ],
            "css": [
                "assets\/css\/content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/icons\/icon48.png",
        "default_popup": "popup.html",
        "default_title": "Project Notes for Codeable"
    },
    "web_accessible_resources": [
        "assets\/icons\/icon.svg",
        "assets\/icons\/add-note.svg",
        "assets\/icons\/remove-note.svg",
        "assets\/icons\/add-tasklist.svg",
        "assets\/icons\/close.svg"
    ]
}