clip it for later

‘clip it for later’ is a simple and clean bookmark app for articles, especially for those who ‘chronically’ open 1000+ tabs in one…

clip it for laterคืออะไร?

clip it for later เป็นส่วนขยายของ Chrome ที่พัฒนาโดย av.seoul และคุณลักษณะหลักของมันคือ "‘clip it for later’ is a simple and clean bookmark app for articles, especially for those who ‘chronically’ open 1000+ tabs in one…"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย clip it for later

ดาวน์โหลดไฟล์ส่วนขยาย clip it for later ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ‘clip it for later’ is a simple and clean bookmark app for articles, especially for those who ‘chronically’ open 1000+ tabs in one browser.

This app is developed by one-person indi developer. I started developing this app for the final project of Programming A2Z 2015 at ITP NYU. I have been still developing this for both study and usage purpose for myself so any user feedbacks would be very welcome and much grateful for me. 

Currently, I have been researching on sharing data between different devices since this app uses chrome.storage.local which only stores data on the user's local machine. I decided not to use chrome.storage.sync because it does not allow the users to access storage more than over certain times per a minute, which does not fit on the purpose of this app. And also I decided not to use HTML5 Local Storage due to the insecurity of when the users delete caches of chrome browser that will delete database too. Please hit me up if you have any idea of this, I would appreciate. 

[email protected]

Thanks,
av                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ clip it for later clip it for later
ID nneimfibemiegbfgjmeblmfclkfknaml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clip-it-for-later/nneimfibemiegbfgjmeblmfclkfknaml
คำอธิบาย ‘clip it for later’ is a simple and clean bookmark app for articles, especially for those who ‘chronically’ open 1000+ tabs in one…
ขนาดไฟล์ 581 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 0.97
อัปเดตครั้งล่าสุด 2016-07-25
วันที่เผยแพร่ 2016-07-25
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา av.seoul
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.kimsehyun.kr
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "clip it for later",
    "permissions": [
        "contextMenus",
        "management",
        "tabs",
        "activeTab",
        "storage",
        ""
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Alt+D",
                "mac": "Alt+D"
            },
            "description": "shortcut for add URL"
        }
    },
    "version": "0.97",
    "icons": {
        "16": "images\/icon48.png",
        "48": "images\/icon128.png",
        "128": "images\/icon256.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon48.png",
            "38": "images\/icon128.png"
        },
        "default_popup": "src\/popup.html"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*",
        "src\/newtab.html",
        "src\/newtab.css",
        "src\/newtab.js"
    ]
}