chrome webstore upload
v3.1.4
وحدة Node.js صغيرة لتحميل/نشر الامتدادات إلى متجر Chrome Web.
إذا كنت تبحث عن تحميل/نشر من CLI ، فاستخدم Chrome-Webstore-Upload-Cli.
npm install --save-dev chrome-webstore-upload
ستحتاج إلى Google API clientId و clientSecret و refreshToken . استخدم الدليل.
جميع الأساليب تعيد الوعد.
import chromeWebstoreUpload from 'chrome-webstore-upload' ;
const store = chromeWebstoreUpload ( {
extensionId : 'ecnglinljpjkbgmdpeiglonddahpbkeb' ,
clientId : 'xxxxxxxxxx' ,
clientSecret : 'xxxxxxxxxx' ,
refreshToken : 'xxxxxxxxxx' ,
} ) ; import fs from 'fs' ;
const myZipFile = fs . createReadStream ( './mypackage.zip' ) ;
const token = 'xxxx' ; // optional. One will be fetched if not provided
const response = await store . uploadExisting ( myZipFile , token ) ;
// response is a Resource Representation
// https://developer.chrome.com/webstore/webstore_api/items#resource const target = 'default' ; // optional. Can also be 'trustedTesters'
const token = 'xxxx' ; // optional. One will be fetched if not provided
const deployPercentage = 25 ; // optional. Will default to 100%.
const response = await store . publish ( target , token , deployPercentage ) ;
// response is documented here:
// https://developer.chrome.com/webstore/webstore_api/items#publish const projection = "DRAFT" ; // optional. Can also be 'PUBLISHED' but only "DRAFT" is supported at this time.
const token = "xxxx" ; // optional. One will be fetched if not provided
const response = await store . get ( projection , token ) ;
// response is documented here:
// https://developer.chrome.com/docs/webstore/webstore_api/items#get const token = store . fetchToken ( ) ;
// token is astring fetchToken ، وقم بتمريرها إلى كل من uploadExisting publish المعلمة الثانية الاختيارية. هذا سيتجنب تلك الأساليب إجراء مكالمات مكررة لرموز جديدة.