中国诗词欣赏

随机显示唐诗宋词

中国诗词欣赏คืออะไร?

中国诗词欣赏 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shangshu Cai และคุณลักษณะหลักของมันคือ "随机显示唐诗宋词"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 中国诗词欣赏

ดาวน์โหลดไฟล์ส่วนขยาย 中国诗词欣赏 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This is a Chrome extension which random displays a Chinese poem when open a new tab or open www.google.com. When a new tab is opened, it will re-direct the page to www.google.com by default. In totally, ~330,000 poems are available.


Instructions: 
 1: click the plugin icon will display a poem randomly;
 2: click the pin icon will fix the poem and unpin will set back to random display;


Designer: Brian Liu

Thanks to the contributors for the the project:https://github.com/chinese-poetry/chinese-poetry.                    

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

ชื่อ 中国诗词欣赏 中国诗词欣赏
ID cdenjoohhmdeigopbkdkndhpdpgnncab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/%E4%B8%AD%E5%9B%BD%E8%AF%97%E8%AF%8D%E6%AC%A3%E8%B5%8F/cdenjoohhmdeigopbkdkndhpdpgnncab
คำอธิบาย 随机显示唐诗宋词
ขนาดไฟล์ 48.79 MB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2019-04-26
วันที่เผยแพร่ 2019-04-25
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Shangshu Cai
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u4e2d\u56fd\u8bd7\u8bcd\u6b23\u8d4f",
    "version": "0.0.5",
    "description": "\u968f\u673a\u663e\u793a\u5510\u8bd7\u5b8b\u8bcd",
    "icons": {
        "32": "img\/icon.png",
        "64": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "chrome_url_overrides": {
        "newtab": "pages\/newtab.html"
    },
    "browser_action": {
        "default_popup": "pages\/popup.html",
        "default_icon": {
            "32": "img\/icon.png",
            "64": "img\/icon.png",
            "128": "img\/icon.png"
        }
    },
    "web_accessible_resources": [
        "data\/*.json",
        "img\/pinned.png",
        "img\/unpin.png"
    ],
    "options_page": "pages\/options.html"
}