LoginSignup
0
0

More than 1 year has passed since last update.

Chrome Platform Status API

Last updated at Posted at 2023-01-26

featureをすべて取得

const features = await fetch('https://chromestatus.com/api/v0/features?q=&num=2301').then(r=>r.text()).then(r => JSON.parse(r.slice(5)))

Googleドキュメントだけを抽出

features.features.map(f => f.doc_links).filter(l=>l).flat().filter(l=>l.includes('docs.google.com'))

design doc: https://docs.google.com/document/d/17hQz4nOC7PJYhxc_MU-BRoT6BnYGZv66XlU1iGX0ywQ/edit#

https://docs.google.com/document/d/1j9mpceLDay6LwC2pPZ5I7lmPKAW7b30iRI4JjTnKgNc/edit (google internal)

Threat Model: https://docs.google.com/document/d/1U5zqfaJCFj_URrAmSxJ0C7z0AilLLJ30lgAqShVWnck/edit?usp=sharing

Detailed Description of V1 vs V2 protocol Differences - https://docs.google.com/document/d/18kQ_TFQns2HZ9KGs4bGDfiiOIRmOhI12oJBttvUlYLY/edit

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0