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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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", "*:\/\/*\/*" ] } |