Ads.txt finder
the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site…
Ads.txt finderคืออะไร?
Ads.txt finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benatiayaniv และคุณลักษณะหลักของมันคือ "the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site…"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ads.txt finder
ดาวน์โหลดไฟล์ส่วนขยาย Ads.txt finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site is using ads.txt or not. clicking on the icon will show the ads.txt file. this is for advertiser adOpps team to check if their seller is actually working with the site
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | flegfjpoiblokjpmalnnjjjgadbjkcma |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/adstxt-finder/flegfjpoiblokjpmalnnjjjgadbjkcma |
คำอธิบาย | the goal of the app is to support ads.txt initiative. every time you browse to a website it the app icon will indicate if the site… |
ขนาดไฟล์ | 7.36 KB |
จำนวนการติดตั้ง | 312 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2017-08-20 |
วันที่เผยแพร่ | 2017-08-20 |
ผู้พัฒนา | benatiayaniv |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ads.txt finder", "version": "0.1", "background": { "scripts": [ "bgproc.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "popup.js" ] } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "background", "tabs", "https:\/\/ajax.googleapis.com\/", "webNavigation", "*:\/\/*\/*" ] } |